我有一个模态框,在该模态框内我有一个复选框,它就像一个开关按钮。当我将鼠标悬停在它上面时,我想显示该复选框的工具提示。如何做到这一点。标题在这里不起作用。
我的标记是这样的。
<input id="chkSyncType" title="The tooltip" type="checkbox" class="make-switch" data-on-color="success" data-on-text=" Auto " data-off-text=" Manual " value="false" checked="checked" />
最终的 html 是
<div class="bootstrap-switch bootstrap-switch-wrapper bootstrap-switch-on bootstrap-switch-id-chkSyncType bootstrap-switch-animate" style="width: 161.818px;"><div class="bootstrap-switch-container" style="width: 240px; margin-left: 0px;"><span class="bootstrap-switch-handle-on bootstrap-switch-success" style="width: 80px;"> Auto </span><span class="bootstrap-switch-label" style="width: 80px;"> </span><span class="bootstrap-switch-handle-off bootstrap-switch-default" style="width: 80px;"> Manual </span><input id="chkSyncType" title="mytooltip" type="checkbox" class="make-switch" data-on-color="success" data-on-text=" Auto " data-off-text=" Manual " value="false" checked="checked"></div></div>