我想在我的表单输入提交按钮上使用twitter引导图标。

http://twitter.github.com/bootstrap/base-css.html#icons上的例子主要是有样式的超链接。

我最接近的方法是让图标显示在按钮旁边,但不是在按钮里面。

<div class="input-prepend">
   <span class="add-on"><i class="icon-user icon-white"></i></span>
   <input type="submit" class="btn-primary" value="Login" >
</div>

当前回答

我认为你应该尝试这个FontAwesome设计用于Twitter Bootstrap。

<button class="btn btn-primary icon-save">Button With Icon</button>

其他回答

有一种方法,如何获得(bootstrap的)字形输入类型="提交"。使用css3多后台。

HTML:

<form class="form-search">
   …
   <input type="submit" value="Search">
</form>

和CSS:

.form-search input[type="submit"] {
    padding-left:16px; /* space for only one glyphicon */
    background:-moz-linear-gradient(top,#fff 0%,#eee 100%) no-repeat 16px top,
        url(../images/glyphicons-halflings.png) no-repeat -48px 0,
        -moz-linear-gradient(top,#fff 0%,#eee 100%); /* FF hack */
    /* another hacks here  */
    background:linear-gradient(to bottom,#fff 0%,#eee 100%) no-repeat 16px top,
        url(../images/glyphicons-halflings.png) no-repeat -48px 0,
        linear-gradient(to bottom,#fff 0%,#eee 100%); /* Standard way */
}

如果多个背景是重叠的,在顶部将有第一个背景在后台:符号。 所以在顶部是背景,从左边缩进16px (16px是单个象形文字的宽度),在底层是整个象形文字- hallings .png,在底层(覆盖整个元素)是相同的背景梯度在顶层。

0px是搜索图标(icon-search)的切割,但很容易显示任何其他图标。

如果有人需要一个:悬停效果,背景必须再次键入相同的形式。

您可以使用按钮标记代替输入

<button type="submit" class="btn btn-primary">
  <i class="icon-user icon-white"></i> Sign in
</button>

您可以在某处添加一个<a/>图标,并绑定一个JavaScrit动作 向它提交表单。类的名称和值(如有必要) 原始提交按钮的名称+值可以在一个隐藏属性中。这很简单 jQuery,请允许我避免纯JavaScript版本。

假设这是原始形式:

<form method="post" id="myFavoriteForm>
   ...other fields...
   <input class="btn btn-primary" type="submit" name="login" value="Let me in" />
</form>

这样修改:

<form method="post" id="myFavoriteForm">
   ...other fields...
   <a href="#" class="btn btn-primary" id="myFavoriteFormSubmitButton">
      <i class="icon-user icon-white"></i>&nbsp;Let me in
   </a>
</form>

...然后是神奇的jQuery:

$("#myFavoriteFormSubmitButton").bind('click', function(event) {
   $("#myFavoriteForm").submit();
});

或者如果你想确保用户总是能提交表单,那就是 换做是我,你可以把正常的提交按钮留在里面 并使用jQuery .hide()隐藏它。它确保登录仍然有效 无需JavaScript和jQuery按正常提交按钮(有 人们使用链接,w3m和类似的浏览器),但提供 如果可能的话,一个带有图标的花哨按钮。

我想这种更好的方法对我来说很好。

<form name="myform">
<!-- form fields -->
   <a href="#" class="btn btn-success" onclick="document.myform.submit();">
     Submit <i class="icon-plus"></i>&nbsp; Icon
   </a>
</form>

有一种新的方法可以用bootstrap 3做到这一点:

<button type="button" class="btn btn-default btn-lg">
  <span class="glyphicon glyphicon-star"></span> Star
</button>

在bootstrap glyphicons页面的“如何使用”下面: