我需要从html调用一个javascript函数,它似乎无法正常工作。我单击图像,没有任何反应。变量“ brushVar”似乎没有变化。 blue.png是一个小的蓝色按钮,blueN.png是一个具有不同蓝色阴影的蓝色小按钮,等等。非常感谢您的帮助
<body>
<script>
var brushVar;
function blue() {
brushVar = ("#000000");
alert(brushVar);
}
function blueN() {
brushVar = ("#000000");
alert(brushVar);
}
function cyan() {
brushVar = ("#000000");
alert(brushVar);
}
function cyanN() {
brushVar = ("#000000");
alert(brushVar);
}
function green() {
brushVar = ("#000000");
alert(brushVar);
}
function greenN() {
brushVar = ("#000000");
alert(brushVar);
}
function purple() {
brushVar = ("#000000");
alert(brushVar);
}
function purpleN() {
brushVar = ("#000000");
alert(brushVar);
}
function red() {
brushVar = ("000000");
alert(brushVar);
}
function redN() {
brushVar = ("000000");
alert(brushVar);
}
function yellow() {
brushVar = ("#000000");
alert(brushVar);
}
function yellowN() {
brushVar = ("#000000");
alert(brushVar);
}
</script>
<div id="buttons" style="position:absolute; width:100%; height:100%>
<a href="#" onclick="blue()';" >
<img src="/blue.png"/>
</a>
<a href="#" onclick="blueN()';" >
<img src="blueN.png"/>
</a>
<a href="#" onclick="cyan()';" >
<img src="cyan.png"/>
</a>
<a href="#" onclick="cyanN()';" >
<img src="cyanN.png"/>
</a>
<a href="#" onclick="green()';" >
<img src="green.png"/>
</a><a href="#" onclick="greenN()';" >
<img src="greenN.png"/>
</a>
<a href="#" onclick="purple()';" >
<img src="purple.png"/>
</a>
<a href="#" onclick="purpleN()';" >
<img src="purpleN.png"/>
</a>
<a href="#" onclick="red()';" >
<img src="red.png"/>
</a>
<a href="#" onclick="redN()';" >
<img src="redN.png"/>
</a>
<a href="#" onclick="yellow()';" >
<img src="yellow.png"/>
</a>
<a href="#" onclick="yellowN()';" >
<img src="yellowN.png"/>
</a>
</div>
</body>
最佳答案
您的JavaScript必须用script标记括起来,并且字符串必须用引号引起来:
<div id="over" style="position:absolute; width:100%; height:100%>
<img src="blue.png" href='' onclick='blue();'>
<img src="blue.png" href='' onclick='blue();' >
<img src="blueN.png" href='' onclick='blueN();' >
<img src="cyan.png" href='' onclick='cyan();' >
<img src="cyanN.png" href='' onclick='cyanN();'>
<img src="green.png" href='' onclick='green();' >
<img src="greenN.png" href='' onclick='greenN();'>
<img src="purple.png" href='' onclick='purple();'>
<img src="purpleN.png" href='' onclick='purpleN();'>
<img src="red.png" href='' onclick='red();'>
<img src="redN.png" href='' onclick='redN();'>
<img src="yellow.png" href='' onclick='yellow();'>
<img src="yellowN.png" href='' onclick='yellowN();'>
</div>
<script type="text/javascript">
var color;
function blue() {
color = "blue";
}
function redN() {
color = "red-N";
}
</script>