私は次のJSコードを持っています:
var data = jQuery.parseJSON('{"name":"John"}');
$('#name').live("change", function() {
name = data[$(this).val()];
alert(name);
});
FireFoxでは正常に動作しますが、IE7では次のJSエラーが発生します。
Object doesn't support this property or method.