これはコードですが、IE8および7では機能しません(IE9、chrome、firefox、safari、operaはすべて問題ありません)。私はたくさんのことを試しました(メタutf-8コード、phpヘッダーコード、アラートの取得、cache: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);
});