我有一箇舊網站,它已被兩個網站取代,並開始製作一個模式窗口,以指導人們訪問正確的網站。jQuery模式窗口不能在Internet Explorer中工作
我只能在舊網站上提供HTML文件,並且HTML的結構不是很統一。我決定在文檔的頭部添加一些jQuery,它爲頁面添加了一個模式窗口,爲人們提供了到新網站的鏈接。
這一切都適用於Linux和Mac上的Chrome,Safari和Firefox,但在PC上的Internet Explorer上測試時,它看起來都是錯誤的,根本不起作用。我打開了控制檯,並沒有錯誤。
$(function(){
var disappear = function(){
// window.location = window.location
var $m = $('.modal')
$m.eq(0).fadeOut()
$m.hide('slow')
}
$('body').append(
$("<div class='modal'>").css({
position: 'fixed',
width: '100%',
height: '100%',
backgroundColor: '#000',
opacity: .8,
top: 0,
left: 0
})).click(disappear).after($("<div class='modal'>").css({
position: 'fixed',
width: 600,
// height: 300,
backgroundColor: '#FFE',
borderRadius: 10,
border: "5px solid #005400",
top: '10%',
left: '50%',
marginLeft: -300,
padding: '1em',
fontFamily: 'trebuchet ms, sans-serif'
}).html("<h2>Please be advised</h2><p>\
The information on this website is maintained for historical purposes.<br>\
It has not been updated since 2009.<br>\
However, Tesfa Community Tourism continues to thrive.<br>\
<h3>For up to date information...</h3>\
<a href='http://tesfatours.com/?from=cbtcom' class='button green'>Book with Tesfa Tours</a>\
<a href='http://community-tourism-ethiopia.org/?from=cbtcom' class='button sand'>Community website</a>\
<a href='#' id='close' class='button'>Continue to archive site</a>\
</p>\
"))
$('#close').css({fontSize:'12px'}).live('click',disappear);
$('table table').eq(1).html(myString)
})
任何想法,爲什麼這種失敗讚賞。
這可能是正確的 - 但是我現有的頁面繼承了太多糟糕的代碼 - 將內容複製出來並從頭開始會更容易 - 所以我絕對不會知道。 –