【发布时间】:2016-06-14 17:54:05
【问题描述】:
我想知道为什么下面的字形图标不会触发悬停弹出窗口.. 可以请教吗?
<div class="form-group has-feedback">
@Html.LabelFor(model => model.FullName, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10 ">
@Html.EditorFor(model => model.FullName, new { htmlAttributes = new { @class = "form-control" } })
<span class="glyphicon glyphicon-question-sign form-control-feedback" rel="popover" data-trigger="hover" data-toggle="popover" data-placement="bottom" title="Title" data-content="Content"></span>
@Html.ValidationMessageFor(model => model.FullName, "", new { @class = "text-danger" })
</div>
【问题讨论】:
标签: asp.net-mvc twitter-bootstrap-3 glyphicons