JS 按钮下一步(onclick点击事件)

Posted for米洛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 按钮下一步(onclick点击事件)相关的知识,希望对你有一定的参考价值。

 1 <html>
 2     <head>
 3         <meta charset="UTF-8">
 4         <title></title>
 5     </head>
 6     <body>
 7         <input id="aaa" type="checkbox" onclick="check()" />
 8         <input type="button" value="下一步" id="btn" disabled="disabled"/>
 9     </body>
10 </html>
11 <script>    
12     function check(){
13         var aaa = document.getElementById(\'aaa\');
14         if(aaa.checked){
15         document.getElementById(\'btn\').removeAttribute(\'disabled\');
16     }else{
17         document.getElementById(\'btn\').setAttribute(\'disabled\',\'disabled\');
18     }
19 }
20 </script>

 

removeAttribute(\'要删除的属性\')    删除属性

setAttribute(\'属性\',\'属性值\')  添加属性

 

 

以上是关于JS 按钮下一步(onclick点击事件)的主要内容,如果未能解决你的问题,请参考以下文章

点击按钮跳转到下一题js

js如何给按钮添加点击事件

用js实现两个按钮效果,上一页 下一页,点上一页按钮页面跳转到上一页,点下一页按钮页面跳转到下一页。

js 动态添加的按钮 onclick事件怎么写?

如何让一个按钮自动触发,自动执行onclick鼠标单击事件. 默认已点击.

单击下一步按钮如何更改图像