标签:
$("p").text() $("p").html() $(":checkbox").val()$(".test").attr("alex") $(".test").attr("alex","sb")$(".test").attr("checked","checked") $(":checkbox").removeAttr("checked")$(".test").prop("checked",true)$(".test").addClass("hide")
- 详见实例 【返回顶部】:实例之 返回顶部 【点击链接】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="jquery-1.12.4.js"></script>
</head>
<body>
<script>
// html([val|fn])
$(‘p‘).html();
$("p").html("Hello <b>world</b>!");
$("p").html(function(n){
return "这个 p 元素的 index 是:" + n;
});
// text() text([val|fn]) 取得所有匹配元素的内容。
$(‘p‘).text();
$("p").text("Hello world!");
$("p").text(function(n){
return "这个 p 元素的 index 是:" + n;
});
// val([val|fn|arr])
$("input").val();
$("input").val("hello world!");
$(‘input:text.items‘).val(function() {
return this.value + ‘ ‘ + this.className;
});
</script>
</body>
</html>
html text val
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="jquery-1.12.4.js"></script>
</head>
<body>
<script>
// html([val|fn])
$(‘p‘).html();
$("p").html("Hello <b>world</b>!");
$("p").html(function(n){
return "这个 p 元素的 index 是:" + n;
});
// text() text([val|fn]) 取得所有匹配元素的内容。
$(‘p‘).text();
$("p").text("Hello world!");
$("p").text(function(n){
return "这个 p 元素的 index 是:" + n;
});
// val([val|fn|arr])
$("input").val();
$("input").val("hello world!");
$(‘input:text.items‘).val(function() {
return this.value + ‘ ‘ + this.className;
});
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="../jquery-1.9.1.min.js"></script>
</head>
<body>
<ul>
<li>Hello</li>
<li>Hello</li>
<li>Hello</li>
</ul>
<strong>jQuery 代码:</strong>
<script>
// addClass(class|fn) addClass 为每个匹配的元素添加指定的类名。
$("p").addClass("selected");
$("p").addClass("selected1 selected2");
$(‘ul li:last‘).addClass(function() {
return ‘item-‘ + $(this).index();
});
// removeClass([class|fn])
$("p").removeClass("selected"); //从匹配的元素中删除 ‘selected‘ 类
//删除匹配元素的所有类
$("p").removeClass();
//删除最后一个元素上与前面重复的class
$(‘li:last‘).removeClass(function() {
return $(this).prev().attr(‘class‘);
});
//toggleClass(class|fn[,sw]) 如果存在(不存在)就删除(添加)一个类。
//根据父元素来设置class属性
$(‘div.foo‘).toggleClass(function() {
if ($(this).parent().is(‘.bar‘) {
return ‘happy‘;
} else {
return ‘sad‘;
}
});
//每点击三下加上一次 ‘highlight‘ 类
var count = 0;
$("p").click(function(){
$(this).toggleClass("highlight", count++ % 3 == 0);
});
</script>
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/zhangju/p/5812415.html