随笔分类 -  js

js心得
摘要:/* * jQuery resize event - v1.1 - 3/14/2010 * http://benalman.com/projects/jquery-resize-plugin/ * * Copyright (c) 2010 "Cowboy" Ben Alman * Dual lic... 阅读全文
posted @ 2015-06-14 14:18 思如雨 阅读(3327) 评论(1) 推荐(0)
摘要:误区: 一直以为jquery获取select中option被选中的文本值,是这样写的: $("#s").text(); //获取所有option的文本值实际上应该这样: $("#s option:selected").text(); //获取选中的option的文本值获取se... 阅读全文
posted @ 2015-06-12 15:35 思如雨 阅读(578) 评论(0) 推荐(0)
摘要:方法一:// Only do anything if jQuery isn't definedif (typeof jQuery == 'undefined') { if (typeof $ == 'function') { // warning, global var ... 阅读全文
posted @ 2015-01-02 16:09 思如雨 阅读(1519) 评论(0) 推荐(0)