|
|
|
สอบถามการตรวจสอบการทำงานของ jquery ว่าทำงานได้หรือไม่ทำงาน |
|
|
|
|
|
|
|
เปลี่ยน type เป็น submit พอกด form ก็กระโดดไปตาม action แล้วครับ onclick ยังไม่ทันได้ทำอะไรเลย
|
|
|
|
|
Date :
2014-10-23 11:34:07 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<form id="form1" name="form1" method="post" action="">
<label for="textfield"></label>
<input type="text" name="textfield" id="textfield" />
<div class="addcart-btn">
<input type="submit" name="button" id="button" value="Submit" />
</div>
</form>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".addcart-btn input[name='button']").click(function(){
alert('Hello');
});
});
</script>
แล้วทำไมอันนี้มัน alert อ่ะครับ ถ้าบอกว่า onclick ทำงานไม่ทัน?
|
|
|
|
|
Date :
2014-10-23 13:27:00 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
การ alert มันจะหยุดการทำงานตอนโชว์ข้อความ แต่ replaceWith มันก็ทำงานแหละแต่พอทำเสร็จมัน ก็ submit นายจึงไม้เห็น
|
|
|
|
|
Date :
2014-10-23 13:41:12 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตกลงที่ผมเขียน replaceWith มันทำงานใช่ไหม.. ผมอยากหาวิธิเช็คว่ามันทำงานได้ไหม...
|
|
|
|
|
Date :
2014-10-23 13:52:00 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยน type ปุ่ม
<input type="button" name="button" id="button" value="Submit" />
|
|
|
|
|
Date :
2014-10-24 09:25:48 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|