本文主要是介绍一个form多个submit,提交不同的地址,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<html>
<body><form name="form1"> <input type= "submit" value= "百度" onClick= "baidu()"> <input type= "submit" value= "新浪" onClick= "sina()"> </form>
</body>
</html> <script language= "JavaScript">
function baidu(){ document.form1.method= "get"; document.form1.action= "http://baidu.com "; document.form1.submit();console.log(document.form1.action)return true;
} function sina(){ document.form1.method= "get"; document.form1.action= "http://sina.com "; document.form1.submit(); return true;
}
</script>
转载:http://yiranwuqing.iteye.com/blog/707753
这篇关于一个form多个submit,提交不同的地址的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!