JQuery或Javascript通过组合单选按钮和标签获取表格单元格中的标签文本

时间:2016-11-03 02:05:28

标签: javascript jquery html

我有一张桌子,第一列有单选按钮和标签的组合。请不要建议我把文本放在单选按钮中,因为我有一个函数可以在每行的标签上加值,所以我不能合并它。

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
});

1 个答案:

答案 0 :(得分:0)

选择标签,然后获取html。

$("#template").click(function (e) {
     //console.log or whatever you want to do with it
     console.log(  $('.price').html()  )
});