在 IE 中使用 jQuery 对我不起作用。
我有ajax响应:
{"update":{"WaterLever":null},"missing":["WaterBallast"]}
响应时触发不同的功能:
$.post(...
...
function(data) {
markMissing(data['missing']);
fldUpdate(data['update']);
}
一切都在 chrome/FF 中工作,但在 IE 中只有 fldUpdate。
IE 没有找到对象中的元素,尝试了 .indexOf、(val in data) 等...
function markMissing(data) {
//loop all fields in form..
$('[id^=cont]').each(function() {
var s = this.id;
//discard prefix 'cont_' in id.
var fld = s.substring(5);
if(fld in data) { //this doesn't work
//if(data.indexOf(fld)) { //this neither.
$(this).addClass('missing');
} else {
$(this).removeClass('missing');
}
});
}
感谢您的任何意见