思路总结如下:
点一个按钮事件,触发一个js函数,js函数执行:
document.getElementById('button1').style.display='';这个语句是让一个id名为‘button1’的按钮显示出来。
反之,执行:
document.getElementById('button1').style.display='none';这个语句是让一个id名为‘button1’的按钮隐藏起来。
测试代码如下:
<script defer="defer" type="text/javascript">
function hide1(){
document.getElementById('
b').style.display='
none';
}
function display1(){
document.getElementById('
b').style.display='';
}
</
script>
<body>
<input
type="
radio"
name="
r1"
onclick="
hide1()">
<input type="radio" name="r1" onclick="display1()">
<input type="button" name="b" id="b" value="B" >
</body>