在IE7中,我不會從我的文章得到響應回:
function updateItem(item) {
$.post("updater.php",{key:item.id, value:item.value},function(response) {
$('#response').html(response);
});
}
<div id="response"></div>
<select id="PRIMARY_KEY" onchange="updateItem(this)">
<option>1</option>
<option>2</option>
</select>
<?php
echo 'UPDATED KEY: ' . $_POST['key'] . ' TO: ' . $_POST['value'];
?>
它與我的所有其他瀏覽器。這是爲什麼?
編輯:最初,我試圖回答this question。
您確定沒有收到任何回覆嗎?如果您將警報(「測試」)放入響應函數會怎麼樣? – 2010-11-10 13:44:28