jquery——事件
Posted gaoquanquan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery——事件相关的知识,希望对你有一定的参考价值。
1.click事件
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>click事件</title> <script type="text/javascript" src="jquery-1.12.4.min.js"></script> <script type="text/javascript"> $(function () { $(‘#btn‘).click(function () { //重复切换sty样式 $(‘.box‘).toggleClass(‘sty‘); }); }) </script> <style type="text/css"> .box{ width:200px; height:200px; background-color: hotpink; } .sty{ background-color: chartreuse; } </style> </head> <body> <input type="button" name="" value="切换" id="btn"> <div class="box"></div> </body> </html>
以上是关于jquery——事件的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 2012-2019的130多个jQuery代码片段。
markdown 在WordPress中使用jQuery代码片段