Eric Chan ’ s programming lives

抉择比努力奋斗更重要。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2014年3月30日

摘要: 1.预加载图片123456789101112(function($) {var cache = [];// Arguments are image paths relative to the current page.$.preLoadImages = function() {var args_len = arguments.length;for (var i = args_len; i--;) {var cacheImage = document.createElement('img');cacheImage.src = arguments[i];cache.push(cac 阅读全文

posted @ 2014-03-30 12:19 Eric Chan 阅读(188) 评论(0) 推荐(0) 编辑

摘要: 1. 禁止右键点击12345$(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)1234567891011121314$(document).ready(function() {$("input.text1" 阅读全文

posted @ 2014-03-30 12:15 Eric Chan 阅读(187) 评论(0) 推荐(0) 编辑