我一直想弄清楚如何在我的情況下使用jsonp,但沒有運氣。這將對點擊進行計數,並在每次點擊時將名稱和位置寫入txt文件。用jsonp發送數據onclick
<script>
var count1 = 0;
function countClicks1() {
count1 = count1 + 1;
document.getElementById("p1").innerHTML = count1;
}
function doAjax()
$.ajax({
type: "POST",
url: "phpfile.php",
data: "name=name&location=location",
success: function(msg){
alert("Data Saved: " + msg);
}
});
}
document.write('</p>');
document.write('<button onclick="countClicks1(); doAjax();">Count</button>');
document.write('</p>');
document.write('<p id="p1">0</p>');
</script>
這是php文件phpfile.php
<?php
$name = $_POST['name'];
$location = $_POST['location'];
$myFile = "test.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $name);
fwrite($fh, $location);
fclose($fh);
?>
如果這兩個文件都在同一個域中的一切都很好。但是如果我想爲另一個域執行相同的操作,它將無法工作。我想用jsonp將相同的信息發送到phpfile.php。我知道它應該與GET,但我不知道如何。
這不是JSONP。 –
您可以使用getJSON:http://api.jquery.com/jQuery.getJSON/ –
請停止使用document.write。它使我的眼睛受傷... –