我试图通过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
处理程序调用一个函数来填充(所有)不同的select元素,以及一个JavaScript对象,该对象包含所有员工的关联数组,以匹配一个名称和一个返回的员工ID作为select
个元素中的选项值。
返回XHR文本(对于xhrJSON,content-type = application / json):
var empArray = new Array({ id:"12345678", title:"The Title", code:"C123", name:"John Doe"},...);
返回的XHR文本(xhrEmpSelect,content-type = text / html):
<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
。
我做错了什么?
答案 0 :(得分:5)
尝试使用js.text = xhrJSON.responseText;
代替innerHTML
。我相信您遇到的问题与您无法将HTML插入<script>
块的事实有关。
答案 1 :(得分:0)
由于您要设置脚本,因此应使用innerText
而不是innerHTML。试试这个。
js.innerText = xhrJSON.responseText;
//Since FF do not sussport innerText but it does support textContent
js.textContent = xhrJSON.responseText;
我建议您将代码迁移到jQuery,这样可以更加简单,易读且易于维护,而无需担心跨浏览器支持。 jQuery为你做了一切。
答案 2 :(得分:0)
要设置HTMLScriptElement对象的内容(使用document.createElement('script');
创建),您应该使用对象的setText
方法,而不是尝试设置innerHTML
剧本。
js.setText(xhrJSON.responseText);
请参阅上面的链接中的W3规范。