2016-06-14 142 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> 

回答