欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

Firefox中的Javascript問題而不是IE調試問題VIsual Studio 2010

老白2年前7瀏覽0評論

幫助我非常新的網絡開發使用ASP.NET。為什么在調試我的代碼時,我的web應用程序不像IE那樣給出所需的輸出:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
    h1{color:Blue}
    h2{color:Red}

</style>
<script type="text/javascript">
    function ShowColor() {
        alert("You selected " + SelectColor.value);
        BodyContent.style.backgroundColor = SelectColor.value;
    }
</script>
</head>
<body>
<div id="BodyContent">
    <h1>HelloWorld</h1>
    <h2>Welcome</h2>
    <p>
    This is my first Web Page</p>
    <hr />
    Please select color:
    <select id="SelectColor">
        <option value="white">white</option>
        <option value="yellow">yellow</option>
        <option value="silver">silver</option>
    </select>
    <input id="ButtonColor" type="button" value="Select" onclick="ShowColor()" />
</div>

</body>
</html>

問題是當我點擊選擇按鈕時,FF不執行JavaScript“show color ”,而IE執行。

enter image description here

function ShowColor() {
        alert("You selected " + SelectColor.value);
        BodyContent.style.backgroundColor = SelectColor.value;
    }

您的javascript函數應該如下所示:

function ShowColor() {
    alert("You selected " + document.getElementById("SelectColor").value);
    document.body.style.backgroundColor = document.getElementById("SelectColor").value;
}

您需要使用javascript來選擇實際的元素。例如document.gelElementById元素的id),然后更改文檔顏色。這應該可以在任何瀏覽器中運行。

該函數現在顯示適當的選定值,并實際改變網頁的背景。

試試這個:

<script type="text/javascript">
var selected;
function alertselected(selectobj) {
    selected = selectobj.selectedIndex;
}

function ShowColor() {
    alert("You selected " + selected);
    elm = document.getElementById("sample");
    document.getElementById("BodyContent").style.backgroundColor = elm.options[elm.selectedIndex].value;
}

html:

<div id="BodyContent"><select id="sample" onChange="alertselected(this)">option>white</option><option>yellow</option><option>silver</option>

<input id="ButtonColor" type="button" value="Select" onclick="ShowColor()" /></div>