显示属性'标题'元素(输入类型文本,选择和复选框),焦点或单击,在其他元素egLabel中。 请see attached image link。
由于
答案 0 :(得分:0)
可能的解决方案之一JSFiddle:
$(document).on('mouseenter', 'input,select', function (e) {
$('#current-control-label').text($(this).data().title);
});
$(document).on('mouseleave', 'input,select', function (e) {
$('#current-control-label').text(' ');
});
HTML:
<table>
<tr>
<td><input type="text" data-title="Name" /></td>
<td>
<select data-title="Gender">
<option value="M">Male</option>
<option value="M">Female</option>
</select>
</td>
<td><input type="radio" data-title="Active" /></td>
</tr>
<tr>
<td colspan="2">
<span id="current-control-label"> </span>
</td>
</tr>
</table>