当前位置: 移动技术网 > IT编程>开发语言>JavaScript > JQuery 中几个类选择器的简单使用介绍

JQuery 中几个类选择器的简单使用介绍

2018年09月12日  | 移动技术网IT编程  | 我要评论

代码如下:

<%@ page language="c#" autoeventwireup="true" codebehind="testclassselector.x.cs" inherits="webapplication1.testclassselector" %>
<!doctype html>
<html xmlns="https://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="scripts/jquery-1.9.0.min.js"></script>
<style type="text/css">
.first_p {
background-color:red;
}
.second_p {
background-color:green;
}
.first_span {
width:500px;
height:100px;
}
.eric_sun_class {
font-family:arial;
font-size:18px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<p>
<p class="first_p">
this is the first p
</p>
<p class="second_p">
this is the second p
</p>
<p class="first_p">
<span class="first_span">
this is the first span
</span>
</p>
<span class="first_span eric_sun_class">
this is the first span + eric sun class.
</span>
<br />
<span class="eric_sun_class">
this is the eric sun class.
</span>
<br />
<input type="button" value="test" onclick="btn_click();" />
</p>
</form>
</body>
</html>
<script type="text/javascript">
function btn_click() {
alert($(".first_p").text());
alert($(".first_p.first_span").text());
}
</script>


. 代码如下:


$(".first_p, .first_span")


将包含有.first_p 或者 .first_span" 的对象都取到。 这里取到 4 个 对象。
此处的html对应

. 代码如下:


<p class="first_p">
this is the first p
</p>
<p class="first_p">
<span class="first_span">
this is the first span
</span>
</p>
<span class="first_span eric_sun_class">
this is the first span + eric sun class.
</span>


. 代码如下:


$(".first_p .first_span")


将以 .first_p 为类的控件 下的 以 .first_span 为类 的对象取到(类与类之间带有空格 逐层取)。 这里只取到 1 个。
对应的 classname="first_span" 此处的html对应

. 代码如下:


<p class="first_p">
<span class="first_span">
this is the first span
</span>
</p>


. 代码如下:


$(".first_span.eric_sun_class")


将包含有.first_span 并且同时包含有 .eric_sun_class 类的 对象取到(类与类之间没有空格 类似于 ‘与' 操作)。 这里只取到1个。
对应的 classname="first_span eric_sun_class" 此处的html 对应

. 代码如下:


<span class="first_span eric_sun_class">
this is the first span + eric sun class.
</span>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网