jquery

$(function(){
});

$("#id").click(function(){
});

$("#id").bind("click",function(){
});

// live可绑定后创建的对象
$("#id").live("click",function(){
});

        $.ajax({
                    url : 'login.action',
                    type : 'get',
                    data : {
                        username : username,
                        password : password
                    },
                    dataType: "json",
                    success : function(data) {
                        if (data.code == "0") {
                            alert("ok");
                        } else {
                            alert("not ok");
                        }
                    },
                    error : function() {
                        alert("error");
                    }
                });

window.location.Reload()
window.location.href = "edit.jsp";

// 返回值
$(selector).html()

$("p").append(" Hello world!");

$("p").css("background-color","yellow");
$("p").css({"background-color":"yellow","font-size":"200%"});

//移除 p 元素的内容:
$("p").empty();

$('li.item-a').parent()

对于HTML元素本身就带有的固有属性,在处理时,使用prop方法。
对于HTML元素我们自己自定义的DOM属性,在处理时,使用attr方法。

$(selector).addClass(class)

$("p:first").removeClass("intro");

使用cookie插件
$.cookie('username_cookie', username, { expires: 7, path: '/home/' }); // 添加cookie
$.cookie('username_cookie', null, {path: '/home/'}); // 删除cookie
获取cookie不存在时,值为"null"

你可能感兴趣的:(jquery)