是否有任何标准方法可以为按钮集中的每个单选按钮添加工具提示?
<span id="tools">
<input type="radio" id="feature1" name="tool" title="feature 1"><label for="feature1">Tool 1</label>
<input type="radio" id="feature2" name="tool" title="feature 2"><label for="feature2">Tool 2</label>
</span>
和脚本:
$('#tools').buttonset();
我已经为每个输入添加了标题,但没有任何工具提示。