Font-awesome, input type 'submit'

前端 未结 7 1893
挽巷
挽巷 2020-11-28 01:19

There seems to be no class for input type \'submit\' in font-awesome. Is it possible to use some class from font-awesome for button input? I\'ve added icons to all buttons (

相关标签:
7条回答
  • 2020-11-28 01:36

    Also possible like this

    <button type="submit" class="icon-search icon-large"></button>
    
    0 讨论(0)
  • 2020-11-28 01:44

    You can use font awesome utf cheatsheet

    <input type="submit" class="btn btn-success" value="&#xf011; Login"/>
    

    here is the link for the cheatsheet http://fortawesome.github.io/Font-Awesome/cheatsheet/

    0 讨论(0)
  • 2020-11-28 01:44

    Well, technically it's not possible to get :before and :after pseudo elements work on input elements

    From W3C:

    12.1 The :before and :after pseudo-elements

    Authors specify the style and location of generated content with the :before and :after pseudo-elements. As their names indicate, the :before and :after pseudo-elements specify the location of content before and after an element's document tree content. The 'content' property, in conjunction with these pseudo-elements, specifies what is inserted.


    So I had a project where I had submit buttons in the form of input tags and for some reason the other developers restricted me to use <button> tags instead of the usual input submit buttons, so I came up with another solution, of wrapping the buttons inside a span set to position: relative; and then absolutely positioning the icon using :after pseudo.

    Note: The demo fiddle uses the content code for FontAwesome 3.2.1 so you may need to change the value of content property accordingly.

    HTML

    <span><input type="submit" value="Send" class="btn btn-default" /></span>
    

    CSS

    input[type="submit"] {
        margin: 10px;
        padding-right: 30px;
    }
    
    span {
        position: relative;
    }
    
    span:after {
        font-family: FontAwesome;
        content: "\f004"; /* Value may need to be changed in newer version of font awesome*/
        font-size: 13px;
        position: absolute;
        right: 20px;
        top: 1px;
        pointer-events: none;
    }
    

    Demo

    Now here everything is self explanatory here, about one property i.e pointer-events: none;, I've used that because on hovering over the :after pseudo generated content, your button won't click, so using the value of none will force the click action to go pass through that content.

    From Mozilla Developer Network :

    In addition to indicating that the element is not the target of mouse events, the value none instructs the mouse event to go "through" the element and target whatever is "underneath" that element instead.

    Hover the heart font/icon Demo and see what happens if you DON'T use pointer-events: none;

    0 讨论(0)
  • 2020-11-28 01:50

    use button type="submit" instead of input

    <button type="submit" class="btn btn-success">
        <i class="fa fa-arrow-circle-right fa-lg"></i> Next
    </button>
    

    for Font Awesome 3.2.0 use

    <button type="submit" class="btn btn-success">
        <i class="icon-circle-arrow-right icon-large"></i> Next
    </button>
    
    0 讨论(0)
  • 2020-11-28 01:51

    You can use button classes btn-link and btn-xs with type submit, which will make a small invisible button with an icon inside of it. Example:

    <button class="btn btn-link btn-xs" type="submit" name="action" value="delete">
        <i class="fa fa-times text-danger"></i>
    </button>
    
    0 讨论(0)
  • 2020-11-28 01:54

    With multiple submits, when you need the value of the submit selected, this can be done quite easily. Just create a hidden field in your form and change its value depending on what button is clicked. For example, in the form, say you have:

    <input type="hidden" id="Clicked" name="Clicked" value="" />
    <button type="submit" class="btn btn-success ClickCheck" id="Create"> <i class="fa fa-file-pdf-o"> Create Bill</i></button>
    <button type="submit" class="btn btn-success ClickCheck" id="Reset"> <i class="fa fa-times"> Reset</i></button>
    <button type="submit" class="btn btn-success ClickCheck" id="StoreData"> <i class="fa fa-archive"> Save</i></button>
    

    Using jQuery:

    <script type="text/javascript">
        $(document).ready(function()
        {
            $('.ClickCheck').click(function()
            {
                var ButtonID = $(this).attr('id');
                $('#Clicked').val(ButtonID);
            });
        });
    </script>
    

    Then you can retrieve the value of the button clicked in the "Clicked" post variable

    0 讨论(0)
提交回复
热议问题