gpt4 book ai didi

php - jQuery $.post() 和 IE7

转载 作者:可可西里 更新时间:2023-11-01 01:09:37 26 4
gpt4 key购买 nike

在 IE7 上,我的 POST 没有收到回复:

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 .

最佳答案

试试这个:(2 个修改:value 的...值和 <option value="1">1</option>)

<script>
function updateItem(item) {
$.post("updater.php",{key:item.id, value:item.options[item.selectedIndex].value}, function(response) {
$('#response').html(response); });

}
</script>
<div id="response"></div>
<select id="primary_key" onchange="updateItem(this)">
<option value="1">1</option>
<option value="2">2</option>
</select>

我使用 jsfiddle、IE7 和 debugBar 来找到它们。 http://jsfiddle.net/d3xk8/

关于php - jQuery $.post() 和 IE7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4145042/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com