jQuery $. sonrası () ve IE7

0 Cevap php

IE7, geri benim POST bir yanıt alamıyorum:

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'];
?>

Bu benim diğer tüm tarayıcılarla çalışır. Neden ki?

Edit: Başlangıçta, ben cevap çalışıyordum this question.

0 Cevap