- Rongsen.Com.Cn 版权所有 2008-2010 京ICP备08007000号 京公海网安备11010802026356号 朝阳网安编号:110105199号
- 北京黑客防线网安工作室-黑客防线网安服务器维护基地为您提供专业的
服务器维护
,企业网站维护
,网站维护
服务 - (建议采用1024×768分辨率,以达到最佳视觉效果) Powered by 黑客防线网安 ©2009-2010 www.rongsen.com.cn
作者:黑客防线网安ASP维护基地 来源:黑客防线网安ASP维护基地 浏览次数:0 |
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. });
我要申请本站:N点 | 黑客防线官网 | |
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479 |