摘要: 滚动js: 一条一条显示js: 阅读全文
posted @ 2017-11-15 10:15 永往 阅读(1840) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wangji5850/article/details/51004531 https://zhidao.baidu.com/question/749370682508378332.html 阅读全文
posted @ 2017-11-08 16:02 永往 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 1.打开新页面时需要禁止鼠标滚轮,禁止页面滑动; 1 2 3 4 在调用显示层时加上这句js代码就可以了: document.documentElement.style.overflow = "hidden"; 关闭层的时间别忘了在加上这句: document.documentElement.sty 阅读全文
posted @ 2017-11-08 15:55 永往 阅读(5356) 评论(0) 推荐(0) 编辑
摘要: 要求点击第一页是url+p1html,点击第二页是url+p2html等等 阅读全文
posted @ 2017-11-03 14:57 永往 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 因为点击事件的原型也是还回的数据,所以要绑定在body上面。 // $("#w_tagPage a[wid]").click(function(){ $("body").on('click','#w_tagPage a[wid]',function(){ $(this).addClass("w-active").sib... 阅读全文
posted @ 2017-11-03 14:17 永往 阅读(5142) 评论(0) 推荐(0) 编辑
摘要: http://www.superslide2.com/demo.html 滑动门SuperSlide.js插件 使用方法:http://blog.csdn.net/gq_cyan/article/details/53560204 阅读全文
posted @ 2017-11-02 16:18 永往 阅读(159) 评论(0) 推荐(0) 编辑
摘要: <a href="http://wpa.qq.com/msgrd?v=3&amp;uin=2395848377&amp;site=qq&amp;menu=yes"> <em>陈经理</em> <i class="linear"></i></a> 阅读全文
posted @ 2017-11-01 15:42 永往 阅读(205) 评论(0) 推荐(0) 编辑
摘要: var contewidh=$("#container_pb").width() var itemwidth=Math.floor((contewidh-10)/2-12); if (itemwidth%2==0){$('.item').css({width:itemwidth})} if (itemwidth%2==1){$('.item').css({width:(itemwidth-1)}... 阅读全文
posted @ 2017-11-01 15:17 永往 阅读(134) 评论(0) 推荐(0) 编辑
摘要: function closewin(){ self.opener=null; self.close(); } function clock(){ i=i-1 // document.title="本窗口将在"+i+"秒后自动关闭!"; $('.num').html(+i+"秒后自动关闭!"); if 阅读全文
posted @ 2017-09-21 15:01 永往 阅读(190) 评论(0) 推荐(0) 编辑
摘要: //要跳转界面 api.openWin({ name: 'PayOrder', url: 'PayOrder.html?id=2', pageParam:{name:pr} }); //跳转后的界面 var url = location.search; //获取url中"?"符后的字串 var th 阅读全文
posted @ 2017-09-21 13:53 永往 阅读(3073) 评论(0) 推荐(0) 编辑