我有一张桌子,第一列有单选按钮和标签的组合。请不要建议我把文本放在单选按钮中,因为我有一个函数可以在每行的标签上加值,所以我不能合并它。
HTML:
<table id="template" style="display:none;">
<tr>
<td class="hidden"></td>
<td>
<input type="radio" name="rbDefaultPrice" class="radio" />
<label style="font-size: 1em" class="price"></label>
</td>
<td class="startdate"></td>
<td class="enddate"></td>
</tr>
</table>
脚本:
$("#template").click(function (e) {
//JQuery or JS to get label text value
});
答案 0 :(得分:0)
选择标签,然后获取html。
$("#template").click(function (e) {
//console.log or whatever you want to do with it
console.log( $('.price').html() )
});