|
|
|
ดักยังไงคาบ textbox ที่เพิ่มมาจากการกด + เพิ่มtextbox |
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<form name="form" onsubmit="return chkAction()">
<?
for($i=0;$i<=5;$i++){
echo $i.". ";
?>
<input type="text" name="text<?=$i?>" value="" /><br />
<?
}
?>
<input type="submit" value="Submit" />
</form>
</body>
</html>
<script language="javascript">
function chkAction(){
var a=document.form;
var b=<?=$i?>;
for(i=0;i<b;i++){
var c="a.text"+i+".value";
if(!eval(c)){
alert("กรุณากรอก ช่องที่"+i);
return false;
}
}
return true;
}
</script>
|
|
|
|
|
Date :
2012-02-12 16:05:20 |
By :
pooturbo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|