|
|
|
นำข้อความที่กรอกใน textboxมาแสดงpopup ยังไงคะ รบกวนผู้รู้ทีค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<script>
$(function(){
$("#submit").click(function(){
var SetHtml = "คุณ."+$("#name").val()+"..ยืนยันการส่งหรือไม่?";
$("#Dname").html(SetHtml);
})
});
</script>
Code (PHP)
<div class="modal-body">
<div id="Dname"></div>
</div>
|
|
|
|
|
Date :
2018-12-20 12:45:13 |
By :
bunchuai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script>
$(function(){
//ส่งข้อมูลแจ้งซ่อม ปุ่มนี้ตั้งชื่อของ id
$("#ส่งข้อมูลแจ้งซ่อม").click(function(){
var SetHtml = "คุณ."+$("#name").val()+"..ยืนยันการส่งหรือไม่?";
// alert(SetHtml); ลอง alert ดูว่ามีค่ามาไหม
$("#Dname").html(SetHtml);
$("#exampleModalCenter").modal("show");
})
});
|
ประวัติการแก้ไข 2018-12-20 13:52:05
|
|
|
|
Date :
2018-12-20 13:47:14 |
By :
bunchuai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script>
$(function(){
//ส่งข้อมูลแจ้งซ่อม ปุ่มนี้ตั้งชื่อของ id
$("#view").click(function(){
var SetHtml = "คุณ."+$("#name").val()+"..ยืนยันการส่งหรือไม่?";
alert(SetHtml);
$("#Dname").html(SetHtml);
$("#exampleModalCenter").modal("show");
})
});
ตรงนี้
// ตั้ง id ให้ ปุ่มนี้ ชื่อ id="view" แล้ว event click เอาไปใส่ $("#view").click(function() แล้วลองอีกที
<button type="button" class="btn btn-success" id="view" data-toggle="modal" data-target="#exampleModalCenter">
ส่งข้อมูลแจ้งซ่อม
</button>
</script>
|
|
|
|
|
Date :
2018-12-20 14:20:50 |
By :
bunchuai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
// กดอันนี้
<button type="button" class="btn btn-success" id="view" data-toggle="modal" data-target="#exampleModalCenter">
<script>
$(function(){
//ส่งข้อมูลแจ้งซ่อม ปุ่มนี้ตั้งชื่อของ id
$("#view").click(function(){
alert(); // กดแล้วมัน alert ไหม
})
});
ส่งข้อมูลแจ้งซ่อม
</button>
</script>
|
|
|
|
|
Date :
2018-12-20 14:23:22 |
By :
bunchuai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองย้าย jquery ไปไว้ก่อน script js อื่นๆ
หรือย้าย script js อื่น มาไว้หลัง jquery
|
|
|
|
|
Date :
2018-12-20 14:38:05 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|