gpt4 book ai didi

jquery .html() 不适用于 ie8

转载 作者:行者123 更新时间:2023-12-03 21:58:26 25 4
gpt4 key购买 nike

我有一个 jquery 函数,它对 Web 服务器上的 Web 服务方法进行 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 之外的所有浏览器。

对此的任何帮助将不胜感激。

最佳答案

您可以在将其分配为 html() 之前提醒您的响应

或者

您可以使用innerHTML属性代替jquery的html()(尽管它是相同的)

您可能想检查 this链接

关于jquery .html() 不适用于 ie8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3105949/

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