这是代码,但它不适用于 IE8 和 7(IE9、chrome、firefox、safari、opera 都可以)。我尝试了很多东西(元 utf-8 代码、php 标头代码、发出警报、缓存:false)。我能做什么,我需要帮助。感谢您的兴趣。
var request = $.ajax({
type:"GET",
url: "_veri.php?t=icerik_getir&id="+tabopen,
dataType: "html",
});
request.done(function(msg) {
$(".tab-contentmenu").html(msg);
});
编辑:
alert 给了我所有浏览器中请求的数据,但 ".tab-contentmenu" 中仍然没有请求的数据,我该怎么办?
var request = $.ajax({
type:"GET",
context: document.body,
url: "_veri.php?t=icerik_getir&id="+tabopen,
dataType: "html"
});
request.done(function(msg) {
$(".tab-contentmenu").html(msg);
alert(msg);
});