我試圖創建一個從按鈕獲取元素值並創建ajax請求的函數。在開始的'id'是空的,所以下面的JS函數應該使用'id = 1',但是當我點擊按鈕時,值「2」函數應該加載「includes/agallery.php?id = 2」到我的#agallery。使用ID參數刷新Ajax內容
<script type="text/javascript">
var id = 1;
$('#agallery').html('Downloading...'); // Show "Downloading..."
// Do an ajax request
$.ajax({
url: "includes/agallery.php?id="+id
}).done(function(data) { // data what is sent back by the php page
$('#agallery').html(data); // display data
});
</script>
<button onClick="" value="2" class="small-btn last"></button>
它只在我這樣做時才起作用「
您是否從html元素中移除了'onClick =「」'? – friedi
我複製了所有的代碼,但仍然沒有。我不明白爲什麼? – Axwell