我想使用jQuery获取label
的内容。例如:
<input type="checkbox" id="checkbox1">
<label for="checkbox1">Get the text of this label</label>
由于
答案 0 :(得分:4)
就像Rory McCrossan已经指出的那样,这是非常基本的jQuery。请注意他提供的链接:http://api.jquery.com/category/selectors/
while
答案 1 :(得分:3)
这应该有效 -
<label for="checkbox1" id="xyz">Get the text of this label</label>
var t = $('#xyz').html();
答案 2 :(得分:2)
@POST("/login/")
Call<Farm> login(@Header("Authorization") String token, @Body User user);
&#13;
var value=($('label').html());
alert(value);
&#13;
答案 3 :(得分:2)
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function () {
alert($('label[for="checkbox1"]').text())
});
</script>
</head>
<body>
<input type="checkbox" id="checkbox1">
<label for="checkbox1">Get the text of this label</label>
</body>
</html>