|
|
|
เมื่อคลิ๊ก แล้วมันจะบวกให้ทีละ 1 ต้องทำไงครับ โดยการใช้ปุ่ม button คลิ๊กแล้ว ค่าใน เท็กซ์บอกซ์ จะเพิ่มค่าไปทีละ 1 เช่น textbox มีค่าอยู่ 3 พอเราคลิ๊ก ที่ปุ่ม มันก็จะเพิ่มเป็น 4 น่ะครับ |
|
|
|
|
|
|
|
<script>
function addnum(){
document.all.txtint.value++;
}
function delnum(){
document.all.txtint.value--;
}
</script>
<input name="txtint" type="text" id="txtint" value="0"/>
<a href="javascript:void(0);" onclick="addnum()"> ++</a><a href="javascript:void(0);" onclick="delnum()"> - - </a>
ลองดูครับไม่รุ้ถูกใจเปล่า
ผิดถูกขออภัย จากผู้ด้อยความรู้
|
|
|
|
|
Date :
27 พ.ค. 2551 19:32:38 |
By :
arsachi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อิอิอิ ปแอแอ อะนะ
|
|
|
|
|
Date :
29 พ.ค. 2551 12:23:09 |
By :
เอก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Ajax Tutorial</title>
</head>
<script language="javascript">
function fncCreateElement(){
var mySpan = document.getElementById('mySpan');
var myElement1 = document.createElement('<input type="text" name="txt[]">');
myElement1.setAttribute('id',"txt1");
mySpan.appendChild(myElement1);
//*** Remove Element ***//
/*
var deleteEle = document.getElementById('txt1');
mySpan.removeChild(deleteEle);
*/
var myElement2 = document.createElement('<br>');
mySpan.appendChild(myElement2);
}
</script>
<body>
<span id="mySpan"></span>
<input name="btnButton" id="btnButton" type="button" value="Create" onClick="JavaScript:fncCreateElement();">
</body>
</html>
Ref : Ajax CreateElement
|
|
|
|
|
Date :
2009-07-06 06:47:19 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wwwwww
wwwwww
w
w
w
w
|
|
|
|
|
Date :
2023-04-21 09:12:25 |
By :
www |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|