jquery笔记
失焦事件和聚焦事件:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script src="https://cdn.bootcss.com/jquery/1.9.0/jquery.js"></script> </head> <body> <input type="text" id="box" class="app" value="11111" /> <span style="display: none">aafsa</span> <script> $('input').focus(function(){ $('span').show(); }); $('input').blur(function(){ $('span').hide(); }); </script> </body> </html>
演示:
获得焦点时候会span展示,没有获得焦点时候会隐藏
包括一些change事件,select事件
笔记转移,由于在有道云的笔记转移,写的时间可能有点久,如果有错误的地方,请指正