在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>