- Rongsen.Com.Cn 版权所有 2008-2010 京ICP备08007000号 京公海网安备11010802026356号 朝阳网安编号:110105199号
- 北京黑客防线网安工作室-黑客防线网安服务器维护基地为您提供专业的
服务器维护
,企业网站维护
,网站维护
服务 - (建议采用1024×768分辨率,以达到最佳视觉效果) Powered by 黑客防线网安 ©2009-2010 www.rongsen.com.cn
作者:黑客防线网安ASP维护基地 来源:黑客防线网安ASP维护基地 浏览次数:0 |
16. 验证元素是否存在于Jquery对象集合中view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. if ($('#id').length) {
3. // do something
4. }
5. });
17. 使整个DIV可点击view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("div").click(function(){
3. //get the url from href attribute and launch the url
4. window.location=$(this).find("a").attr("href"); return false;
5. });
6. // how to use
7. <DIV><A href="index.html">home</A></DIV>
8.
9. });
18.ID与Class之间转换当改变Window大小时,在ID与Class之间切换
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. function checkWindowSize() {
3. if ( $(window).width() > 1200 ) {
4. $('body').addClass('large');
5. }
6. else {
7. $('body').removeClass('large');
8. }
9. }
10. $(window).resize(checkWindowSize);
11. });
19. 克隆对象view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var cloned = $('#id').clone();
3. // how to use
4. <DIV id=id></DIV>
5.
6. });
20. 使元素居屏幕中间位置view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.fn.center = function () {
3. this.css("position","absolute");
4. this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
5. this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
6. return this;
7. }
8. $("#id").center();
9. });
21. 写自己的选择器view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $.extend($.expr[':'], {
3. moreThen1000px: function(a) {
4. return $(a).width() > 1000;
5. }
6. });
7. $('.box:moreThen1000px').click(function() {
8. // creating a simple js alert box
9. alert('The element that you have clicked is over 1000 pixels wide');
10. });
11. });
我要申请本站:N点 | 黑客防线官网 | |
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479 |