我在Jquery中是全新的,因为我不知道如何使用jquery验证表单字段,有人可以给我看一个示例jquery验证吗?
这是我想要转换为jquery的代码。
var x=document.forms["form1"]["org_id_no"].value;
if (x==null || x=="")
{
alert("Must have an organisation id number");
return false;
}
如何在jquery中编写代码?
答案 0 :(得分:0)
试试这个:
$(document).ready(function() {
if($('form#login :input#logInUsername').val()=="")
{
alert("Must have an organisation id number");
}
});
答案 1 :(得分:0)
假设org_id_no是元素的id。下面将是相应的jQuery代码
var x = $('#org_id_no').val();
if(($.trim(x)).length == 0){
alert("Must have an organisation id number"); return false;
}
答案 2 :(得分:0)
尝试:
<script type="text/javascript">
$(function() {
$('YoursubmitbuttonID').live("click",function(){
validateForm();
});
});
function validateForm()
{
var x=document.forms["myForm"]["org_id_no"].value;
if (x==null || x=="")
{
alert("Must have an organisation id number");
return false;
}
}
</script >
不要忘记包含.js
文件。