最近用frontpage寫網頁程式,發現
1.背景音樂:IE有聲音 Chrome無聲音
2.帳號密碼輸入後按”送出”鍵:IE正常執行 Chrome無法執行命令(如圖)
不知道哪裡出問題,希望各位高手可以幫我解個答^^ 或是可以跟我說該程式碼 應該如何寫才對T T
bgsound只有ie支援,其它firefox,chrome瀏覽器都不支援。請參考下列解決方法。
firefox瀏覽器中播放背景音樂的終極解決方案(chrome多瀏覽器相容)
寫了一個 簡單Sample 讓你參考
<pre class="c" name="code">
<script>
function asd() {
alert(document.getElementById('userid').value);
alert(document.getElementById('userpw').value);
}
</script>
<form name="input" >
userid : <input type="text" ID="userid"> <BR/>
userpw : <input type="text" ID="userpw">
<input type="submit" value="send" onclick="asd()"
</form>