javaScript驗證兩次輸入復密碼制是否相同,
通過去判斷兩次輸入的密碼是否相同來實現,
下面是html代碼<FORM METHOD=POST ACTION="">
<input type="password" id="input1">
<input type="password" id="input2">
<input type="button" value="test"
onclick="check()">
</FORM>下面是javascript的代碼<script>
function check()
{
with(document.all){
if(input1.value!=input2.value)
{
alert("false")
input1.value = "";
input2.value = "";
}
else document.forms[0].submit();
}
2. js 判斷是否為空
js判斷是否為空的代碼如下:
//vara="";
//vara="";
//vara=null;
//vara=undefined;
//vara=[];
//vara={};
//vara=NaN;
if(a===undefined){//只能用===運算來測試某個值是否是未定義的
console.log("為undefined");
}
if(a==null){//等同於a===undefined||a===null
console.log("為null");
}
//String
if(a==""||a==null||a==undefined){//"",null,undefined
console.log("為空");
}
if(!a){//"",null,undefined,NaN
console.log("為空");
}
if(!$.trim(a)){//"",null,undefined
console.log("為空");
}
//Array
if(a.length==0){//"",[]
console.log("為空");
}
if(!a.length){//"",[]
console.log("為空");
}
//Object{}
if($.isEmptyObject(a)){//普通對象使用for...in判斷,有key即為false
console.log("為空");
}
3. JavaScript 表單 驗證不能為空
if (username.length==""){
alert("名字不能為空。")return false;
}
username.length==""怎麼能判斷是否為空呢
可以這樣寫
表單定義(用戶名部分):
<form id="form1" name="form1" method="post" action="cgibin/abc.pl" onsubmit="return validate()">
<table width="500" border="1" align="center">
<tr>
<td align="right"><div align="right">username:</div></td>
<td align="left" bgcolor="#FFFFFF"><div align="left">
<label for="username"></label>
<input name="username" type="text" id="username" size="10" maxlength="10" />
<span style="color: #F00">*不能為空</span></div></td>
</tr>
<tr>
formcheck.js中相關方法定義:
function validate() {
var username=document.getElementByI("username").value
username = username.replace(/[ ]/g,""); //替換所有空格!
if (username==""){
alert("名字不能為空。")return false;
}
return true;
}
4. JS怎麼判斷一個對象是否為空
判斷一個對象是否為空,介紹如下三種判斷方法:
1、直接用for...in...遍歷屬性,結果為真是「非空數內組」,否容則是「空數組」,代碼如下:
if(Object.keys(obj).length==0){
console.log('空對象');
}else{
console.log('非空對象');
}
5. js判斷是否text文本不能為空
思路:主要是獲取這個文本框,然後在獲取文本框裡面的值,看是否為『』;
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""
<htmlxmlns="
<head>
<title>test</title>
<scriptlanguage="javascript">
functiontestnull()
{
//獲取ID為'airline'的元素,並判斷內容是否會空
if(document.getElementById('airline').value=='')
{
alert('null');
document.getElementById('airline').focus();
}
}
</script>
</head>
<body>
<inputtype="text"name="airline"id="airline">
<inputtype="button"onclick="testnull()"value="testnull"/>
</body>
</html>
6. 請教一個關於javascript的問題(怎麼判斷文本框不能輸入空格)
<input type="text" name="name" onkeypress="判斷函數" />
7. 用javascript編寫判斷輸入字元串不為空的函數
首先要知道你的那個text的id
然後專
function checkStr(){
var textvalue = document.getElementById("id").value;
if (textvalue==""){
alert("不能為空屬");
}
}
8. 在js中如何進行非空驗證
需要准備的材料分別有:電腦、html編輯器、瀏覽器。
1、首先,打開html編輯器,新建html文件,例如:index.html。