<!DOCTYPE html><html><head>? ? <meta charset="UTF-8">? ? <title>全選和反選</title></head><body>? ? <input type="button" value="全選" id="a"><script type="text/javascript">? ? ? ? var a=document.getElementById("a");? ? ? ? a.onclick=function(){? ? ? ? ? ? if(this.getAttribute("value")=="全選"){? ? ? ? ? ? ? ? this.setAttribute("value")=="反選";? ? ? ? ? ? }else{? ? ? ? ? ? ? ? this.setAttribute("value")=="全選";? ? ? ? ? ? }? ? ? ? }</script></body></html>
添加回答
舉報
0/150
提交
取消