jquery
文章平均质量分 53
qq_37467814
这个作者很懒,什么都没留下…
展开
-
插件中的this
插件中的this #div1{ width: 100px; height: 100px; background: red; position: absolute; } $(function(){ $.extend({ aaa:function(){ alert(1111); } }); $.fn.extend({ drag:function(){ va原创 2017-02-17 13:52:20 · 256 阅读 · 0 评论 -
each中的this
each中的this $(function(){ $('li').each(function(i,elem){ /*console.log(i); console.log(elem);*/ console.log(this); //this=elem $(this).html(i); if(i==4){ return false; } }) })原创 2017-02-17 14:16:25 · 504 阅读 · 0 评论 -
jQuery中width(),innerWidth(),outerWidth(),outerWidth(true)
div{ background: #fc0; width: 100px; height: 100px; padding: 10px; border: 10px solid red; margin: 10px; } $(function(){ alert($('div').width()); //width alert($('div').in原创 2017-02-12 22:38:39 · 359 阅读 · 0 评论 -
jquery创建水平居中垂直居中弹出框
*{ margin: 0; padding: 0; } #login{ width: 300px; height: 300px; border: 1px solid red; position: absolute; } #close{ position: absolute; right: 5px; top: 5px; } $(function(){ $(原创 2017-02-13 16:09:21 · 470 阅读 · 0 评论 -
jquery拖拽方块效果
div{ width: 100px; height: 100px; background: #fc0; position: absolute; } $(function(){ var x=0; var y=0; $('div').mousedown(function(ev){ x=ev.pageX-$(this).offset().left; y=ev.pageY原创 2017-02-13 22:59:31 · 608 阅读 · 0 评论 -
display为none时jquery的outerWidth()与原生offsetWidth差别
display为none时jquery的outerWidth()与原生offsetWidth差别 #div1{ width: 100px; height: 100px; /*display: none;*/ } $(function(){ // alert($('#div1').outerWidth()); alert($('#div1').get(0).offse原创 2017-02-14 21:50:58 · 861 阅读 · 0 评论 -
remove()与detach()区别
remove()与detach()区别 $(function(){ $('div').click(function(){ alert('tony'); }) // var oDiv=$('div').remove(); var oDiv=$('div').detach(); // remove()与detach()都是移除节点,detach()移除后再追加还有原节点的事件,r原创 2017-02-14 22:34:39 · 335 阅读 · 0 评论