發送的網頁我有一個網頁,上載,顯示「微調」 GIF,同時它檢索使用jQuery的load()方法的內容。JQuery的負載()可以不通過電子郵件在IE
的Internet Explorer用戶的問題是當使用IE的內置「通過電子郵件發送\頁面」他們不能看到郵件的內容,很可能是因爲內容加載到一個div。
有沒有人有辦法解決這個問題?我應該使用不同的方法嗎?
這是代碼。
<script type="text/javascript">
$().ready(function() {
$('#result').load("/reports/default.do?method=report123", function(responseText, textStatus, XMLHttpRequest) {
if (textStatus == "success") {
$('#loading').hide();
$('#result').show();
}
if (textStatus == "error") {
alert("page could not be loaded.");
}
});
});
</script>
<div id="loading"><img src="../images/ajax-loader.gif" alt="loading" id="loading"/></div>
<div id="result"></div>
與問題無關,但'$().ready'已折舊並且不適用於較新版本的jQuery。它應該是'$(文件).ready' –
...或只是'$(函數($){...});' – Pointy