Heim  >  Artikel  >  Web-Frontend  >  Js 控制表单域代码_javascript技巧

Js 控制表单域代码_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:52:571047Durchsuche

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

js验证为正整数
复制代码 代码如下:

<script> <BR>var re = /^[1-9]d*$/; //智能验证单个字符 <BR>if (!re.test(document.getElementById('group_order').value)){ <BR>alert("组排序必须为数字!"); <BR>document.getElementById('group_order').focus(); <BR>return false; <BR>} <BR></script>
if(value alert("不是正整数");
}else{
alert("是正整数");
}

js发送表单(方法一): check_input 是js函数,但是这个方法会把页面内所有的表单都发送掉
复制代码 代码如下:

"transaction",:action=>"check_cid"},{:name=>"form1",:method=>"post",:multipart=>"true" ,:onsubmit=>”return check_input();”}) do %>


js发送表单(方法二): check_original 是js函数,这个方法会发送指定的form,无论方法一,方法二 都别忘了 前面加 return
复制代码 代码如下:

"program",:action=>"index"},{:name=>"newform",:method=>"post",:multipart=>"true"}) %>
'newgroup',:onclick=>'return check_original();'} %>


待续................
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn