代码语言:javascript复制
var startDateText =$("#effectivetime").parent().prev().find("label").html();
<td class="width-15 active">
<label class="pull-right"><p style="color: red">*</p>有效时间</label>
</td>
<td class="width-35">
<form:input path="effectivetime" placeholder="" class="required laydate-icon form-control layer-date"
onclick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})" autocomplete="off"/>
</td>
获取startDateText
值为<p style="color: red">*</p>有效时间
另外之前先的<font>*</font>
font标签不推荐使用就换成p标签就可以了