a.net的26个Jquery使用小技巧(3)_.NET概论及软件使用_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

a.net的26个Jquery使用小技巧(3)

作者:黑客防线网安ASP维护基地 来源:黑客防线网安ASP维护基地 浏览次数:0

本篇关键词:技巧使用 '
黑客防线网安网讯:    9. 返回页面顶部功能view plaincopy to clipboardprint?1. $(document).ready(function() {2. $('a[href*=#]').click(function() {3. if (location.pathname.replace(/^\//,&#3...

    9. 返回页面顶部功能

view plaincopy to clipboardprint?

1. $(document).ready(function() {

2. $('a[href*=#]').click(function() {

3. if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')

4.  && location.hostname == this.hostname) {

5. var $target = $(this.hash);

6.    $target = $target.length && $target

7.    || $('[name=' + this.hash.slice(1) +']');

8. if ($target.length) {

9. var targetOffset = $target.offset().top;

10.   $('html,body')

11.   .animate({scrollTop: targetOffset}, 900);

12. return false;

13.    }

14.   }

15.   });

16. // how to use

17. // place this where you want to scroll to

18. <A name=top></A>

19. // the link

20. <A href="#top">go to top</A>

21. });

11.获得鼠标指针XY值

view plaincopy to clipboardprint?

1. $(document).ready(function() {

2.    $().mousemove(function(e){

3. //display the x and y axis values inside the div with the id XY

4.     $('#XY').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);

5.   });

6. // how to use

7. <DIV id=XY></DIV>

8.

9. });

12. 验证元素是否为空

view plaincopy to clipboardprint?

1. $(document).ready(function() {

2. if ($('#id').html()) {

3. // do something

4.    }

5. });

13. 替换元素

view plaincopy to clipboardprint?

1. $(document).ready(function() {

2.    $('#id').replaceWith('

3. <DIV>I have been replaced</DIV>

4.

5. ');

6. });

14. jQuery延时加载功能view plaincopy to clipboardprint?

1. $(document).ready(function() {

2.    window.setTimeout(function() {

3. // do something

4.    }, 1000);

5. });

15. 移除单词功能view plaincopy to clipboardprint?

1. $(document).ready(function() {

2. var el = $('#id');

3.    el.html(el.html().replace(/word/ig, ""));

4. });

 

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-14222-1.html
网站维护教程更新时间:2012-03-30 05:30:23  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer