form 表单提交的另一种方式 js
2021-01-26 14:16
标签:sql 选择器 java color str fir value input submit 说明,点击button在js中执行提交,特殊之处在于form的name属性fm,fm.submit()进行执行函数,而不是利用id选择器 form 表单提交的另一种方式 js 标签:sql 选择器 java color str fir value input submit 原文地址:https://www.cnblogs.com/zytcomeon/p/13229400.htmlhtml>
head>
script type="text/javascript">
function formSubmit()
{
fm.submit()
}
script>
head>
body>
form name=fm>
名:input type="text" name="firstname" size="20">br />
姓:input type="text" name="lastname" size="20">br />
br />
input type="button" onclick="formSubmit()" value="提交">
form>
body>
html>
document.getElementById(
"form"
).submit(); 进行.submit()
上一篇:js中有趣的数学
文章标题:form 表单提交的另一种方式 js
文章链接:http://soscw.com/index.php/essay/47314.html