我在 IE8 中此代码的第 5 行收到以下错误“Objected Expected”,该代码适用于 Firefox,但不适用于我正在开发的浏览器 IE 8。谢谢。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script language="javascript">
$(document).ready(function(){
if($('#DialogFinalMessage > div').html().length>0){
window.location.href = "<Desired destination page URL>"
}
});
</script>