1

I want to fetch the text of checkbox label in the given code:

<label id="age_global_2" class="checked">
  <input type="checkbox" value="3016" name="age_global">
  2 - 3 Years
</label>
4

2 回答 2

1

利用

$('#age_global_2').text();

于 2012-08-29T10:02:15.587 回答
1

在 jquery 中使用

alert($.trim($('#age_global_2').text()));
于 2012-08-29T10:01:01.890 回答