我正在寫一個web應用程序android瀏覽器java腳本問題
代碼是這樣的。我正試圖在頁面加載開始時顯示進度條。在IE和Firefox中運行良好,但在Android瀏覽器甚至沒有加載!是否存在這個問題?如何調試?
<html>
<head>
<title>Mainpage</title>
<script type="text/javascript">
function modalWin() {
//alert("coming");
if (window.showModalDialog) {
window.showModalDialog("pb.html","name","dialogWidth:255px;dialogHeight:250px");
} else {
window.open('xpopupex.htm','name','height=100,width=100,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes');
}
}
</script>
</head>
<body onLoad=modalWin()>
<frameset rows="5%, *" border="10">
<frame src="header.html">
<frame src="footer.html">
</frameset>
</frameset>
<noframes>
You are using an old browser.
</noframes>
</body>
</html>
框架集是相當過時的,我不知道它是不是像框架集。 – Brian 2011-03-10 11:43:49
彈出窗口讓寶寶耶穌哭了。 – redent84 2011-03-10 11:45:12
你是否啓用了JavaScript。看到這個http://developer.android.com/reference/android/webkit/WebSettings.html#setJavaScriptEnabled%28boolean%29 – Mudassir 2011-03-10 11:58:26