|
|
|
สอบถามเรื่อง javascript Dom จะเอาค่าจาก textfield ครับ |
|
|
|
|
|
|
|
หาอ่านเกี่ยวกับ eval นะครับ
|
|
|
|
|
Date :
2012-03-30 00:34:00 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2012-03-30 01:00:14 |
By :
tonnant |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval
Code (JavaScript)
<script>
function test(num){
for(i = 1; i<=num;i++){
var x = eval("document.myform.num_"+i+".value");
alert(x);
}
}
</script>
<form name='myform'>
<?
for($i=1;$i<=3;$i++){
?>
<input type="text" name="num_<?=$i;?>" id="num_<?=$i;?>"><br />
<?
}
?>
<input type="button" name="button" onclick="test(3)">
</form>
|
|
|
|
|
Date :
2012-03-30 06:26:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getElementById
Code (JavaScript)
<script>
function test(num){
for(i = 1; i<=num;i++){
var x = document.getElementById("num_"+i);
alert(x.value);
}
}
</script>
<form name='myform'>
<?
for($i=1;$i<=3;$i++){
?>
<input type="text" name="num_<?=$i;?>" id="num_<?=$i;?>"><br />
<?
}
?>
<input type="button" name="button" onclick="test(3)">
</form>
|
|
|
|
|
Date :
2012-03-30 06:27:43 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับทั้งพี่วิน แะล พี่ PlaKriM
ผมเคยลอง
Code (PHP)
var x = document.getElementById("num_"+i).value;
alert(x);
แต่ไม่ได้ เดี๋ยวลองแบบที่สองของพี่วินหน่อยครับ
|
|
|
|
|
Date :
2012-03-30 13:57:38 |
By :
tonnant |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|