我想做一個Ajax按鈕來運行一個鏈接的PHP代碼。在下面當我點擊它給頁面上的刷新,不跑就行了按鈕的代碼:Ajax按鈕的PHP變量
$.ajax({url: 'http://192.168.0.106:8080/v1/devices/'<?php $deviceID; ?>'/led/?access_token='<?php $dispositivo ?>'?params=l1,HIGH', success: function(result){
我希望它只是運行線路,而無需刷新整個頁面,問題出在哪裏?
<?
echo "<form method='post' action='test.php'>";
?>
<script>
$(document).ready(function(){
$("button").click(function(){
$.ajax({url: 'http://192.168.0.106:8080/v1/devices/'<?php $deviceID; ?>'/led/?access_token='<?php $dispositivo ?>'?params=l1,HIGH', success: function(result){
$("#div1").html(result);
}});
});
});
</script>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Liga</button>
<?
echo "</form>";//fim do formulário
?>
您需要防止默認操作,即。 e.preventDefault(); – Sean 2015-04-05 03:02:46