标签:
$(document).ready(function() { alert("加载完毕!"); })
//注册事件的函数,和普通的dom不一样,不需要在元素上标记on**这样的事件
$(function() { alert("加载完毕!"); });
$(“#div1”).html(“<font color=red>hello</font>”)
语法、意义类似于CSS选择器
$(“#div1”).css(“background”, “red”);
value:$(“#un”).val(“abc”)
CSS选择器,同时选择拥有样式的多个元素(类似于CSS选择器)
<style type="text/css"> .test{ background-color:Red} </style> <script type="text/javascript"> $(function() { $(".test").click(function() { alert($(this).text()); }); }); </script> <p class="test">test1</p> <p class="test">test2</p> <p class="test">test3</p>
if ($("#btn1").length <= 0) { alert("id为btn1的元素不存在!"); }
JQuery的Dom操作
alert($("#btn1").html()); $("#btn1").html("hello");
2、使用text()方法读取或者设置元素的innerText:
alert($("#btn1").text()); $("#btn1").text("hello");
alert($(“#btn1").attr("href")); $("#btn1").attr("href", "http://www.rupeng.com");
节点遍历
next()方法用于获取节点之后的挨着的第一个同辈元素
siblings()方法用于获取所有同辈元素,
标签:
原文地址:http://www.cnblogs.com/nonameG/p/4966153.html