Code //驗證若干TextBox是否為空 //用法:var textBoxIds = new Array("txtUserCode", "txtPwd"); // var flag=TextBoxIsEmpty(textBoxIds); function TextBoxIsEmpty(textBoxIds) { for (var i =0; i < textBoxIds.length; i++) { var textBox = document.getElementById(textBoxIds[i]); if (typeof (textBox) =="object"&& trim(textBox.value) =="") { returntrue; } } returnfalse; }
posted on
2009-02-19 09:44白亚伟
阅读(747)
评论(0)
编辑收藏举报