我有一个jquery函数,它对Web服务器上的webservice方法进行ajax调用,该方法返回一个带有数据的html表。我使用.html()来渲染div上的返回值。这适用于Firefox,Chrome,Safari,但在IE8上无效
$.ajax({
type: "POST",
url: "./../WebAjaxCalls.asmx/GetProductInstruction",
data: "{'ProductID':'" + $("#txtProductID").val() + "'}",
success: function(data) {
if (data.d[0] == "true") {
**$("#dvProudctInstruction").html(data.d[1]);**
}
},
contentType: "application/json; charset=utf-8",
dataType: "json",
error: function(e, textStatus, errorThrown) {
bReturn = false;
}
});
行$(“#dvProudctInstruction”)。html(data.d [1]);适用于IE8以外的所有浏览器。
对此的任何帮助将不胜感激。