|
|
|
อยากทราบวิธีกำหนดเงื่อนไขตรวจสอบว่า select ถูกเลือกค่าหรือไม่ และtxtboxมีค่าว่างหรือไม่ จะต้องทำอย่างไร |
|
|
|
|
|
|
|
document.form1.select1.value == '' && ....
|
|
|
|
|
Date :
2013-07-19 17:11:54 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใส่ ' 'แทน false แล้วอ่ะค่ะ แต่ฟังชันก็ยังใช้ไม่ได้อ่ะค่ะ
Code (JavaScript)
function checkselect()
{
if(document.form1.select1.value == ' ' &&
document.form1.select2.value == ' ' &&
document.form1.select3.value == ' ' &&
document.form1.select4.value == ' ' &&
document.form1.datepicker.value == ' ' &&
document.form1.timepicker.value == ' ' &&
document.form1.datepicker2.value == ' ' &&
document.form1.timepicker2.value == ' ' )
{
alert('Please input data');
return false;
}else document.form1.submit();
}
หรือเป็นเพราะว่า เป็นประเภท select กับ texbox เลยอยู่ในฟังชันเดียวกันไม่ได้ เกี่ยวรึปล่าวคะ
|
|
|
|
|
Date :
2013-07-25 13:50:53 |
By :
kotchakorn_j |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
document.getElementById("ไอดีของ Element").value;
|
|
|
|
|
Date :
2013-07-25 15:45:06 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-07-25 16:08:45 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เช็กค่าว่าง อย่าไปเคาะมันสิครับ
document.form1.select1.value == ' ' แตกต่างกับ document.form1.select1.value == '';
|
|
|
|
|
Date :
2013-07-25 16:21:55 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
function checkselect()
{
if(document.getElementById("select1").value;
document.getElementById("select2").value;
document.getElementById("select3").value;
document.getElementById("select4").value;
document.getElementById("datepicker2").value;
document.getElementById("timepicker2").value;
document.getElementById("datepicker").value;
document.getElementById("timepicker").value;)
{
alert('Please input data');
return false;
}else document.form1.submit();
}
ใช่รึปล่าวคะ คือลองดูแล้วมัน errorอ่ะค่ะ ไม่รู้ผิดตรงไหน ช่วยทีค่ะ
|
|
|
|
|
Date :
2013-07-25 16:26:04 |
By :
kotchakorn_j |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id='select1' name='select1'>
<option></option>
</select>
|
ประวัติการแก้ไข 2013-07-25 17:18:30
|
|
|
|
Date :
2013-07-25 17:17:18 |
By :
webmedesigns |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script type="text/javascript">
function Check(){
var V1 = document.getElementById("Val1").value;
var V2 = document.getElementById("Val2").value;
var V3 = document.getElementById("Val3").value;
var CK=false;
if(V1==""){
alert("Data1 empty.");
}else if(V2==0){
alert("Data2 not select.");
}else if(V3==""){
alert("Data3 empty.");
}else{
CK=true;
}
return CK;
}
</script>
</head>
<body>
<form method="post" onSubmit="return Check();">
<p>
<label for="Val1">Data 1</label>
<input type="text" name="Val1" id="Val1">
</p>
<p>
<label for="Val2">Data2</label>
<select name="Val2" id="Val2">
<option value="0" selected="selected">Select Value</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
</p>
<p>
<label for="Val3">Data3</label>
<textarea name="Val3" id="Val3"></textarea>
</p>
<p>
<input type="submit" name="button" id="button" value="Submit">
</p>
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-07-25 17:30:34 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|