gpt4 book ai didi

javascript - <script> 的 innerHTML 适用于 FF,不适用于 IE

转载 作者:搜寻专家 更新时间:2023-11-01 04:10:50 25 4
gpt4 key购买 nike

我正在尝试通过 Ajax 填充 <select> 元素。它在 FF 中运行良好,但我在 IE 中得到一个 unknown runtime error

HTML:

<select id="emp_select" name="emp_select">
<option value=" ">Please enter a store</option>
</select>

Javascript:

$("#store").blur(function() {
populateDropdowns();
});

...

function populateDropdowns() {
var store = $("#store").val();

if (store.length != 4) {
alert("Store # must be 4 digits!");
$("#store").focus();
return false;
}

var xhrJSON = new XMLHttpRequest();
var xhrEmpSelect = new XMLHttpRequest();
var xhrMgrSelect = new XMLHttpRequest();

var jsonDone = false;
var empSelectDone = false;
var mgrSelectDone = false;

$("#processing-dialog").dialog({
width: 300,
height: 150
});

xhrJSON.onreadystatechange = function() {
if (xhrJSON.readyState == 4) {
if (xhrJSON.status == 200) {
var js = document.createElement('script');
js.type = 'text/javascript';

js.innerHTML = xhrJSON.responseText;
var scr = document.getElementsByTagName('script')[1];
scr.parentNode.insertBefore(js,scr);

jsonDone = true;
if (jsonDone && empSelectDone && mgrSelectDone) {
$("#processing-dialog").dialog("close");
$("#processing-dialog").dialog("destroy");
return true;
}
} else {
return false;
}
}
}

xhrEmpSelect.onreadystatechange = function() {
if (xhrEmpSelect.readyState == 4) {
if (xhrEmpSelect.status == 200) {
$("#emp_select").html(xhrEmpSelect.responseText);
empSelectDone = true;
if (jsonDone && empSelectDone && mgrSelectDone) {
$("#processing-dialog").dialog("close");
$("#processing-dialog").dialog("destroy");
return true;
}
} else {
return false;
}
}
}

xhrMgrSelect.onreadystatechange = function() {
if (xhrMgrSelect.readyState == 4) {
if (xhrMgrSelect.status == 200) {
$("#mgr_select").html(xhrMgrSelect.responseText);
mgrSelectDone = true;
if (jsonDone && empSelectDone && mgrSelectDone) {
$("#processing-dialog").dialog("close");
$("#processing-dialog").dialog("destroy");
return true;
}
} else {
return false;
}
}
}

var url = "ajax.cgi";

var JSONdata = "action=generateJSON&store=" + store;
var EmpSelectData = "action=generateEmpSelect&store=" + store;
var MgrSelectData = "action=generateMgrSelect&store=" + store;

xhrJSON.open("POST",url);
xhrJSON.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhrJSON.send(JSONdata);

xhrEmpSelect.open("POST",url);
xhrEmpSelect.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhrEmpSelect.send(EmpSelectData);

xhrMgrSelect.open("POST",url);
xhrMgrSelect.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhrMgrSelect.send(MgrSelectData);
}

blur 处理程序调用一个函数来填充(所有)不同的选择元素,加上一个 JavaScript 对象,该对象包含所有员工的关联数组,以将名称与作为选项值返回的员工 ID 匹配在两个 select 元素中。

返回的 XHR 文本(对于 xhrJSON,content-type=application/json):

var empArray = new Array({ id:"12345678", title:"The Title", code:"C123", name:"John Doe"},...);

为 (xhrEmpSelect, content-type=text/html) 返回的 XHR 文本:

<option value=" ">Select One</option>
<option value="John Doe">John Doe</option>
<option value="Joe Blow">Joe Blow</option>
...
<option value="other">Other...</option>
</select>

xhrMgrSelect 返回相似文本,content-type=text/html

因此在 FF 中一切正常,JS 对象出现并插入到 DOM 中,并且两个 <select> 元素也被填充。但是在 IE 中,我在 unknown runtime error 处理程序中得到了一个 xhrJSON.onreadystatechange,我尝试将 js.innerHTML 设置为 xhrJSON.responseText

我做错了什么?

最佳答案

尝试使用 js.text = xhrJSON.responseText;而不是 innerHTML .我相信您遇到的问题与您无法将 HTML 插入到 <script> 中有关。 block 。

关于javascript - &lt;script&gt; 的 innerHTML 适用于 FF,不适用于 IE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9775109/

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