|
|
|
การเช็ค list/menu ผมติดปัญหา ตรงการเช็คการเลือก list/menu คือ ผมจะใช้ script เช็คค่า ในส่วนของ |
|
|
|
|
|
|
|
ผมติดปัญหา ตรงการเช็คการเลือก list/menu คือ ผมจะใช้ script เช็คค่า ในส่วนของ textfield ไม่มีปัญหาครับ แต่มีปัญหาตรง list/menu ตรง month มีใครพอจะทราบไหมครับว่า เพราะอะไร
<script type="text/javascript">
function check_data()
{
if(document.getElementById('mag_name').value == "")
{
alert("Please enter Magazine Name.");
document.getElementById('mag_name').focus();
return false;
}
if(document.getElementById('mag_month').value == "")
{
alert("Please select Month.");
document.getElementById('mag_month').focus();
return false;
}
}
</script>
//FORM
<form action="fnadd.php" method="post" enctype="multipart/form-data" name="add_frm">
.
.
.
<tr >
<td width="108" align="right" valign="middle"><span><b>Magazine Name :</b></span></td>
<td width="383" align="left" valign="top"><input name="mag_name" type="text" id="mag_name" style="width: 225px;" />
* </td>
</tr>
// list/menu select month
<?
$month=Array('January','Fabuary','March','April','May','June','July','August','Sebtember','October','November','December');
$month_num=Array('01','02','03','04','05','06','07','08','09','10','11','12');
echo "<select name=mag_month id=mag_month>";
echo "<option >"."Month"." </option>";
for($i=0;$i<12;$i++)
{
echo "<option value=".$month_num[$i].">".$month[$i]." </option>";
}
echo "</select>";
?>
<td align="left" valign="top"><input type="submit" name="Submit" value="Add Magazine" onclick="return check_data()" />
</td>
</tr>
</form>
ขอบคุณครับ
Tag : - - - -
|
|
|
|
|
|
Date :
20 พ.ย. 2551 11:45:02 |
By :
ยิ่งยง |
View :
1193 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา javascript นี้ไปใช้แทนน่ะครับ
function check_data()
{
with(add_frm){
if(mag_name.value == "")
{
alert("Please enter Magazine Name.");
mag_name.focus();
return false;
}
if(mag_month.options.value == "")
{
alert("Please select Month.");
mag_month.focus();
return false;
}
}
}
|
|
|
|
|
Date :
20 พ.ย. 2551 14:32:23 |
By :
windersun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ได้อ่ะครับ
|
|
|
|
|
Date :
20 พ.ย. 2551 14:49:05 |
By :
ยิ่งยง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|