Home > Backend Development > PHP Tutorial > js有关onclick的问题

js有关onclick的问题

WBOY
Release: 2016-06-23 13:42:32
Original
938 people have browsed it











四则运算
计算矩形















请输入x1:
请输入x2:
请选择计算类型:
















请输入长:
请输入宽:








<script> <br /> function selType(s){ <br /> window.alert(s); <br /> if(s=='jisuan'){ <br /> <br /> table1.style.display="block"; <br /> table2.style.display="none“; <br /> }else if(s=='area'){ <br /> <br /> table1.style.display="none"; <br /> table2.style.display="block"; <br /> } <br /> } <br /> <br /> </script>





在<script></script>中if(s=='jisuan'){

table1.style.display="block";
table2.style.display="none“;
}else if(s=='area'){

table1.style.display="none";
table2.style.display="block";
}
这一段去掉onclick就响应window.alert()了
但是加上后不但 if 执行不了,window.alert也不响应了


回复讨论(解决方案)

楼主好像selType方法里一个引号打错了...

//table2.style.display="none“;table2.style.display="none";
Copy after login

嗯,我太粗心了谢谢

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template