上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: var aNode = $('#id');var height = aNode.height(); //如果在获取height前,aNode已经是display:none 或者说 aNode是隐藏的,那么获取不到aNode的高度console.log(height); 阅读全文
posted @ 2014-07-08 21:05 mabel_on_line 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 整个大的背景框有个点击事件,如果标签结构是(详细的css样式略)a{background:green;} 我是个人用户a标签有个click事件像这样的 a标签包着img标签的时候 在ie下点击图片位置的时候 click事件不会触发解决方式是把a标签改成div 我是个人用户给div标签绑定... 阅读全文
posted @ 2014-07-07 15:40 mabel_on_line 阅读(3037) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/b87fe19eaeb2cf5218356896.html让iframe自适应高度,下面是实现的源码: 以上亲测,ie、火狐、谷歌等浏览器均没问题,希望对你有用。 阅读全文
posted @ 2014-07-04 19:05 mabel_on_line 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 在项目中难免会遇到这样一个问题就是页面引入了IFrame并且需要父页面调用子页面函数或者子页面需要调用父页面函数。比如说:现在有两个页面parent.html和child.html。其中parent.html中含有IFrame并且IFrame指向child.html。现在需要在parent.html... 阅读全文
posted @ 2014-07-04 19:04 mabel_on_line 阅读(451) 评论(0) 推荐(0) 编辑
摘要: $.extend(target,prop1,propN)用一个或多个其他对象来扩展一个对象,返回这个被扩展的对象。这是简化继承的主要工具。返回值:Object参数:target (Object): 要扩展的对象prop1 (Object): 要与第一个对象合并的对象propN (Object): (... 阅读全文
posted @ 2014-07-04 18:12 mabel_on_line 阅读(923) 评论(0) 推荐(0) 编辑
摘要: /** * @version 0.1 * @author jianminlu * @update 2013-06-19 15:23 */(function ($) { /** * @name tabs 页卡函数 * @param {Object} ... 阅读全文
posted @ 2014-07-04 17:46 mabel_on_line 阅读(474) 评论(0) 推荐(0) 编辑
摘要: jQuery 中 click事件会累计绑定例如下列代码:aNode.click(function(){ bNode.click(function(){ console.log('haha'); });});如果把对bNode的点击事件绑定到aNode的点击事件里,那么每点击一次aNode就... 阅读全文
posted @ 2014-07-04 15:26 mabel_on_line 阅读(19690) 评论(1) 推荐(1) 编辑
摘要: http://www.zhangxinxu.com/wordpress/?p=813http://blog.csdn.net/ddcatlee/article/details/2724127http://www.blueidea.com/tech/web/2008/5892.asp 阅读全文
posted @ 2014-07-02 16:49 mabel_on_line 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 本文转自:http://www.wufangbo.com/ie6-ie7-display-inline-block/通常我们想让内联元素为行块布局显示,有2种方法,最常见的是方法是.selector {display:block;float:left;……},第二种方法是.selector {dis... 阅读全文
posted @ 2014-06-25 15:40 mabel_on_line 阅读(509) 评论(0) 推荐(0) 编辑
摘要: playBox是iframe里的元素id 阅读全文
posted @ 2014-06-20 16:45 mabel_on_line 阅读(171) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页