当前位置: 代码迷 >> Web前端 >> document.getElementById添onClick,onChange,style属性的方法
  详细解决方案

document.getElementById添onClick,onChange,style属性的方法

热度:772   发布时间:2012-10-28 09:54:44.0
document.getElementById加onClick,onChange,style属性的方法

<a href="javascript:void(0)" id="c1">12322222222222222</a><br>
<select id="s1"><option value="1">111111111111</option><option value="2">222222222222</option></select>
<script>
document.getElementById ("c1").onclick=function()
{
?alert('c');
}
document.getElementById ("s1").onchange=function()
{
?s();
}
function s(){alert('s');}
</script>

?

style设置:

?

document.getElementById(src).style.display="none";???????

  相关解决方案