一个按钮A,点击一下之后使A不能再被点击,当点击B按钮的时候使A按钮能被点击,该怎么做呢?
------解决方案--------------------
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>无标题文档</title>
<scripttype="text/javascript"src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
window.onload=function()
{
varoBtn1=document.getElementById('btn1');
varoBtn2=document.getElementById('btn2');
oBtn1.onclick=function()
{
this.disabled=true;
}
oBtn2.onclick=function()
{
oBtn1.disabled=false;
}
}
</script>
</head>
<body>
<inputtype="button"value="按钮A"id="btn1"/>
<inputtype="button"value="按钮B"id="btn2"/>
</body>
</html>
------解决方案--------------------
快给分!!!!