您当前的位置:首页 > 计算机 > 编程开发 > JavaScript

怎么使用jquery获得标签的值或元素的内容

时间:08-17来源:作者:点击数:

在jquery中,你能够获得标签的值或元素的内容从已经选择的标签中。

例如:

1 选择一个标签名为p的标签,并展示其标签的值。

$('p').html();

2 选择一个类名为class1的标签,并展示其值,不管标签名如何。

$('.class1').html();

3 选择一个id为id1的标签,并展示其值,不管标签名如何。

$('#id1').html();

Jquery 实例:

<html>
	<head>
		<title>jquery get tag value</title>
		<script type="text/javascript" src="../jquery-1.11.1.min.js"></script>
	</head>
	<script type="text/javascript">
		$(document).ready(function(){
			var $temp=$('p').html();
			alert($temp);
			var $temp=$(".class1").html();
			alert($temp);
			
			var $temp=$("#id1").html();
		  alert($temp);	
			
			
			});
		
		</script>
	<body>
		<h1>jquery get tag value</h1>
		<p> 
			thisa paragrap1
			</p>
			<div class="class1">
			this is class='class1'
			</div>
			<div id="id1">
			this is id='id1'
			</div>
	</body>
</html>
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门
本栏推荐