|
|
|
ช่วยแนะนำทีครับ คือผมจะทำให้ปุ่มสถานะเปลี่ยนเวลาเราจองสนามเสร็จให้เปลี่ยนเป็นไม่ว่างทำไงครับ |
|
|
|
|
|
|
|
ถ้าใช้ AJAX ด้วย jQuery จะเขียนประมาณนี้ครับ
Code (JavaScript)
jQuery(document).ready( function(){
jQuery('#content').on('click', 'a.rml_bttn', function(e) {
e.preventDefault();
var rml_post_id = jQuery(this).data( 'id' );
var ts = jQuery(this);
jQuery.ajax({
url : rml_obj.ajax_url,
type : 'post',
data : {
action : 'read_me_later',
security : rml_obj.check_nonce,
post_id : rml_post_id
},
success : function( response ) {
if(ts.html()=="DONE") { ts.html("MARK AS DONE"); } // ts.html()=="DONE" - maybe changed based on response
else { ts.html("DONE"); }
jQuery('.rml_contents').html(response);
}
});
//jQuery(this).hide();
});
});
https://stackoverflow.com/questions/50042819/change-the-button-text-after-the-ajax-update-db
ลองค้นหา
https://www.google.com/search?client=firefox-b-d&q=ajax+update+and+change+button+text
|
|
|
|
|
Date :
2021-06-27 06:52:08 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|