我試圖根據不同的按鈕點擊運行多個php腳本。 當使用點擊按鈕時,我不希望頁面重新加載,只是基本上運行PHP腳本。使用Ajax按鈕單擊運行多個php腳本點擊
這是我的代碼,但由於某種原因,我無法得到以下代碼來工作。
我想我沒有正確調用按鈕ID。
<html>
<head>
<title>Example</title>
<script>
$('.myButton').click(function() {
$.ajax({
type: "GET",
url: "run.php"
}).done(function(resp) {
alert("Hello! " + resp);
});
});
$('.myButton2').click(function() {
$.ajax({
type: "GET",
url: "run1.php"
}).done(function(resp) {
alert("Hello! " + resp);
});
});
$('.myButton3').click(function() {
$.ajax({
type: "GET",
url: "run2.php"
}).done(function(resp) {
alert("Hello! " + resp);
});
});
</script>
</head>
<body>
<input type="button" value="Click" id="myButton" />
<input type="button" value="Click" id="myButton2" />
<input type="button" value="Click" id="myButton3" />
</body>
</html>
這裏有沒有PHP的,所以爲什麼標籤? –
1)http://idownvotedbecau.se/beingunresponsive 2)http://idownvotedbecau.se/nomcve/ –