HTML Code
1 2 3 4 5 6 7 8 9 10 11 12 13 | < script language = "javascript" src = "js/jquery-1.2.6.min.js" ></ script > < script type = "text/javascript" > $(function(){ $("#btShowtime").click(function(){ // event เมื่อปุ่มถูกคลิก var html = $.ajax({ // สร้างตัวแปร html เพื่อเก็บค่า html ที่ได้จากการเรียกใช้ ajax url: "jquery_ajax_test.php" }).responseText; $("#showtime").html(html); // นำค่าในตัวแปร html ไปแสดงใน div ที่มี id เท่ากับ showtime }); }); </ script > < div id = "showtime" ></ div > < input name = "btShowtime" type = "button" id = "btShowtime" value = "Button" /> |
jquery_ajax_text.php
1 2 3 4 | <?php header( "Content-Type: text/html; charset=TIS-620" ); echo date ( "d-m-Y H:i:s" ); ?> |