1
我已經創建了使用jquery的倒計時器,它在mozila,chorme中工作正常,但它不能在Internet Explorer中工作;我的代碼是這樣的:倒計時計時器不能在Internet Explorer中工作
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<div>Minutes</div>
<div>Seconds</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="http://jquery-countdown.googlecode.com/svn/trunk/js/jquery.countdown.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function() {
$('#counter').countdown({
image: 'digits.png',
startTime: '25:30'
});
});
</script>
請幫助我。
它在IE的JavaScript控制檯中說了什麼? – Dai
哪個版本的IE? –
您的代碼在IE 9和8中工作爲http://jsfiddle.net/RxcVP/1/,但它在IE中無法正常工作。請提及您的問題與IE中的正確功能或IE中的可見性有關? – Usman