利用jQuery获取标签,只需写入$("TagName"); //获取TagName标签,如$("div");
<html>
<head>
<title>标签选择器</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>
<body>
<div>div的内容</div>
<div>Hello world!</div>
<script type="text/javascript">
$("div").html("Hello jQuery!"); //将hello jQuery写所有div标签中
</script>
</body>
</html>