Javascript Firefox中的问题但IE中没有调试问题VIsual Studio 2010

ukqbszuj  于 2023-05-27  发布在  Java
关注(0)|答案(2)|浏览(119)

帮助我对使用ASP.NET进行Web开发非常陌生。为什么我的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“ShowColor”当我点击选择按钮,但IE做。

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

5lhxktic1#

你的JavaScript函数应该如下:

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

您需要使用javascript来选择实际的元素。例如document.gelElementById(“id of element”),然后更改文档的颜色。这应该在任何浏览器中工作。
该函数现在显示适当的选定值,并实际更改网页的背景。

5ssjco0h

5ssjco0h2#

试试这个:

<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;
}

联系我们

<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>

相关问题