|
|
|
รบกวน ขอสอบถามผู้รู้ครับ ต้องการนำข้อมูลที่ได้จากการกรอกข้อมูลใน form แล้วกดปุ่ม button ให้ส่งค่าไปแสดงผล ในmodal Bootstrap ไม่ทราบว่าต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
HTML + JQuery
Name: <input type="text" id="txt-name" name="txt-name"> <br>
Tel: <input type="text" id="txt-tel" name="txt-tel"> <br>
E-mail: <input type="email" id="txt-email" name="txt-email"> <br>
<button type="button" onclick="showModal();">Show</button>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
function showModal(){
var name = $('#txt-name').val(),
tel = $('#txt-tel').val(),
email = $('#txt-email').val();
alert("Name: " + name + "\nTel: " + tel + "\nE-mail: " + email);
}
</script>
|
|
|
|
|
Date :
2018-09-08 08:45:38 |
By :
Jatmentz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
$('button[name="save"]').click(()=>{
$.ajax({url: '/save.php', data: $('form').serialize(),type:'POST'})
.done((rs)=>{
$('#xxxx').html($('input[name="xxxxx"]').val());
});
});
|
|
|
|
|
Date :
2018-09-08 08:50:26 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|