Chinaunix首页 | 论坛 | 博客
  • 博客访问: 276353
  • 博文数量: 103
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 705
  • 用 户 组: 普通用户
  • 注册时间: 2013-05-02 16:15
文章分类

全部博文(103)

文章存档

2014年(8)

2013年(95)

我的朋友

分类: JavaScript

2013-12-29 10:04:46

/*
DOM和CSS


$(function(){
    //alert($("#box").html());//.html()获取html内容“www
    //alert($("#box").text());//获取text内容  “www”
    //$('#box').html('cccccccccccc');//替换html
    //$('#box').text('dd');//替换文本内容
    
    //alert($('input').val());
    //$('input').val('aaaaaaa');//val()设置表单
    //$('input').val(['男','女','编程']);
});
*/
//属性
/*
$(function(){
    //alert($('#box').attr('id'));//获取属性值
    $('#box').attr('title','1234');//设置属性
    $('div').attr({
        'title':'234',
        'class':'red',
    });
});


$(function(){
    alert($('div').css('color','red'));
});

*/

//默认样式和指定样式间的切换
/*
$(function(){
    $('div').click(function(){
        $(this).toggleClass('red');
    });
});    

$(function(){
    var count=0;
    $('div').click(function(){
        $(this).toggleClass('red size',count++%2==0);
    });
});


$(function(){
    $('div').click(function(){
        $(this).toggleClass('red');
        if($(this).hasClass('green')){
            $(this).removeClass('green');
        }
    });
});    


$(function(){
    $('div').click(function(){
        $(this).toggleClass(function(){
            if($(this).hasClass('red')){
                $(this).removeClass('red');
                return 'green';
            }else if($(this).hasClass('green')){
                $(this).removeClass('green');
                return 'red';
            }
        });
    });
});

*/
阅读(860) | 评论(0) | 转发(0) |
0

上一篇:jQuery01-基础

下一篇:jQuery03-表单选择器

给主人留下些什么吧!~~