2017-01-04 95 views
0

擺脫glyphicon我有下面的代碼:得到輸入標籤

<div class="form-group"> 
    <div class="input-group col-xs-6"> 
     <input type="text" class="form-control"placeholder="Model" name="pdq"> 
    </div> 
</div> 

其中給出了這樣的:

enter image description here

問題: 我怎樣才能在右側擺脫glyphicon的?

+0

的可能的複製[從引導刪除Glyphicons(http://stackoverflow.com/questions/29849102/remove-glyphicons-from-bootstrap) – dGRAMOP

+1

我不能複製的問題 - 是你確定你沒有瀏覽器插件/插件爲你添加? – ochi

+0

@ochi,我不確定,因爲我的其他輸入標籤不顯示任何glyphicons ....我怎麼知道瀏覽器擴展/插件是否做到了這一點? – wi3o

回答

0

我無法複製該問題 - 請參閱下面的演示

你確定你沒有瀏覽器插件/插件爲你添加?

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<!-- Latest compiled and minified CSS --> 
 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> 
 

 
<!-- Optional theme --> 
 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> 
 

 
<!-- Latest compiled and minified JavaScript --> 
 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> 
 

 
<div class="form-group"> 
 
    <div class="input-group col-xs-6"> 
 
    <input type="text" class="form-control" placeholder="Model" name="pdq"> 
 
</div> 
 
</div>