jQuery实用技巧必备(上)
本文实例总结了经典且实用的jQuery代码开发技巧。分享给大家供大家参考。具体如下: 1. 禁止右键点击 $(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; }); }); 2. 隐藏搜索文本框文字 Hide when clicked in the search field, the value.(example can be found below in the comment fields) $(document).ready(function() { $