2016-06-14 111 views
0

我想知道为什么下面的图形不会触发悬停弹出窗口.. 您能否提供建议?Bootstrap Glyphicon Popover

<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> 

回答