zoukankan      html  css  js  c++  java
  • 用JS动态改变表单form里的action值属性的方法

    方法1:

    <form id="form1" name="form1" method="post" action="../news/index.asp">
          <table width="100%" height="43" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td height="28"><input name="keyword" type="text" style="150px" id="keyword"/></td>
            </tr>
            <tr>
              <td height="28"><select name="Searchtype"  style="110px" id="Searchtype" onchange="Searchtype1();">
                <option value="news" selected="selected">新闻中心</option>
                <option value="case">工程案例</option>
              </select>
              <input type="submit" name="Submit" value="搜索" /></td>
            </tr>
          </table>
      </form>
      <script language="javascript">
      function Searchtype1(){
      var type=document.getElementById("Searchtype").options[document.getElementById("Searchtype").selectedIndex].value;
      if (type=="news"){document.getElementById("form1").action="../news/index.asp"}
      else if (type=="case"){document.getElementById("form1").action="../case/index.asp"}
      }
      </script>

    方法2:

    <html>
    <head>
    <script language="javascript">
    function check(){
    if(document.form1.a[0].checked==true)
    document.form1.action="1.htm"
    else
    document.form1.action="2.htm"
    }
    </script>
    </head>
    <body>
    <form name="form1" method="post" action="" onSubmit="check();">
    转到页面一<input type="radio" name="a">
    转到页面二<input type="radio" name="a">
    <input name="" type="submit" value="提交">
    </form>
    </body>
    </html>  

  • 相关阅读:
    WinForm容器内控件批量效验是否同意为空?设置是否仅仅读?设置是否可用等方法分享
    EF的CRUD
    SICP 习题 (1.41)解题总结
    陈光标挽救纽约穷人背后有何玄机?
    poj 1276 Cash Machine(多重背包)
    vue的生命周期
    vue mounted组件的使用
    babel-polyfill的几种使用方式
    可拖拽排序的vue组件
    import、export 和 export default
  • 原文地址:https://www.cnblogs.com/ly312/p/1825590.html
Copyright © 2011-2022 走看看