用JS动态改变表单form里的action值属性的两种方法

下面小编就为大家带来一篇用JS动态改变表单form里的action值属性的两种方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

方法1:

<form method="post" action="../news/index.asp"> <table cellpadding="0" cellspacing="0"> <tr> <td><input type="text"/></td> </tr> <tr> <td><select onchange="Searchtype1();"> <option value="news" selected="selected">新闻中心</option> <option value="case">工程案例</option> </select> <input type="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 method="post" action="" onSubmit="check();"> 转到页面一<input type="radio"> 转到页面二<input type="radio"> <input type="submit" value="提交"> </form> </body> </html>

以上这篇用JS动态改变表单form里的action值属性的两种方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzpgwz.html