jQuery实用技巧必备(下)
本文实例总结了经典且实用的jQuery代码开发技巧。分享给大家供大家参考。具体如下: 23. jQuery延时加载功能 Want to delay something? $(document).ready(function() { window.setTimeout(function() { // do something }, 1000); }); 24. 移除单词功能 Want to remove a certain word(s)? $(document).ready(function() { var el = $('#id'); el.html(el.html
下载地址
用户评论