我正在尝试从元素中替换所有出现的某个字符(引号)。我的代码在 Chrome 和 FF 中运行良好,但在 IE 中失败,调试器说 -'target.html()' is null or not an object
这是我的代码的样子 -
text = "some random text";
target = $('#target');
target.append(text);
target.html(target.html().replace(/"/g, " "));
是什么导致 IE 中出现该错误,我该如何解决?