0

ASP.NETを使用したWeb開発の初心者です。以下のコードをデバッグするときにIEが行うように、私のWebアプリが目的の出力を提供しないのはなぜですか。

<!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 "ShowColor"を実行しないのに、IEが実行することです。

ここに画像の説明を入力してください

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

2 に答える 2

3

javascript関数は次のようになります。

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

javascriptを使用して実際の要素を選択する必要があります。たとえば、document.gelElementById( "id of element")と入力し、ドキュメントの色を変更します。これはどのブラウザでも機能するはずです。

この関数は、適切な選択された値を表示し、実際にWebページの背景を変更します。これが役に立った場合は、回答としてマークしてください。

于 2012-05-13T09:41:58.817 に答える
1

これを試して:

<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>
于 2012-05-13T09:48:23.470 に答える