|
|
|
ถามเรื่องการเขียน script ให้ refresh เฉพาะส่วนหน่อยครับ ติดปัญหาเรื่องการส่งค่าไปอีกหน้า |
|
|
|
|
|
|
|
ใช้ Ajax แบบนี้นะครับ
Code (JavaScript)
<script type="text/javascript">
$(document).ready(function(){
$("#btn1").click(function(){
var bodyContent = $.ajax({
url: "jQueryAjax2.php",
global: false,
type: "POST",
data: "name=John&location=Boston",
dataType: "html",
async:false,
success: function(msg){
alert(msg);
}
}
).responseText;
$("p").text(bodyContent);
});
});
</script>
jQuery.ajax()
|
|
|
|
|
Date :
2017-04-20 11:07:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|