2 回答
一只萌萌小番薯
TA贡献1795条经验 获得超7个赞
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title>menu</title> <style type="text/css"> .action-button.next { background-color: grey; } </style> <script type="text/javascript" src="jquery-1.8.0.min.js"></script> <script type="text/javascript"> var all = 1; function submitphone () { if (all == 1) { $ ("input#next1").toggleClass ('next'); } } </script> </head> <body> <input type="button" name="next" onclick="submitphone()" id="next1" class="action-button" value="下一步" /> </body> </html> |
添加回答
举报
0/150
提交
取消