最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to use FontAwesome icon as submit button in HTML form - Stack Overflow

programmeradmin1浏览0评论

I'm trying to get this FontAwesome search icon to act as a submit button:

Search form submit IMG

Link to search form (not evergreen):

I've looked through various other questions, including use of JS and using a button tag, and still couldn't get this to work.

Here is my code:

CSS:

#header-search-submit {
position: absolute;
z-index: 1;
right: 36px;
top: 6px;
font-size: 24px;
color: #7B7B7B;
cursor: pointer;
width: 0;
}

input[type="text"] {
border: 1px solid #881d98;
border-radius: 24px;
border-color: white;
}

/* header search desktop */
@media screen and (min-width: 800px) {
#header-search-desktop-div {
    position: absolute;
    left: 150px;
    width: 450px;
    margin-top: 0;
    margin-bottom: 0;
}
}

HTML:

<div id="header-search-desktop-div">
<form id="header-search-form" class="search" action="/" method="get">
    <fieldset>
        <span class="text">
            <input name="product-search" id="header-search-desktop-span" type="text" value="" placeholder="Product Search…" /><i id="header-search-submit" class="fa fa-search"></i>
        </span>
    </fieldset>
    <input type="hidden" name="post_type" value="product" />
</form>
</div>

The idea of using JS to create the submit function in the 'Space before /head' ? :

<script>$('#header-search-desktop-span').click(function() { 
alert('Searching for '+$('#header-search-submit').val());
});
</script>

I'm clearly doing something very wrong, please help =D

I'm trying to get this FontAwesome search icon to act as a submit button:

Search form submit IMG

Link to search form (not evergreen):

https://themirrorman.co

I've looked through various other questions, including use of JS and using a button tag, and still couldn't get this to work.

Here is my code:

CSS:

#header-search-submit {
position: absolute;
z-index: 1;
right: 36px;
top: 6px;
font-size: 24px;
color: #7B7B7B;
cursor: pointer;
width: 0;
}

input[type="text"] {
border: 1px solid #881d98;
border-radius: 24px;
border-color: white;
}

/* header search desktop */
@media screen and (min-width: 800px) {
#header-search-desktop-div {
    position: absolute;
    left: 150px;
    width: 450px;
    margin-top: 0;
    margin-bottom: 0;
}
}

HTML:

<div id="header-search-desktop-div">
<form id="header-search-form" class="search" action="https://themirrorman.co/" method="get">
    <fieldset>
        <span class="text">
            <input name="product-search" id="header-search-desktop-span" type="text" value="" placeholder="Product Search…" /><i id="header-search-submit" class="fa fa-search"></i>
        </span>
    </fieldset>
    <input type="hidden" name="post_type" value="product" />
</form>
</div>

The idea of using JS to create the submit function in the 'Space before /head' ? :

<script>$('#header-search-desktop-span').click(function() { 
alert('Searching for '+$('#header-search-submit').val());
});
</script>

I'm clearly doing something very wrong, please help =D

Share Improve this question edited Jan 8, 2020 at 21:53 Martijn Pieters 1.1m321 gold badges4.2k silver badges3.4k bronze badges asked Dec 31, 2017 at 11:52 VisualWizardryVisualWizardry 1691 gold badge2 silver badges12 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You'll need to make the submit button have FontAwesome as the font-family, and use &#xf002; as the value.

<input style="font-family: FontAwesome" value="&#xf002;" type="submit">

You can use additional CSS to change the styling of the button.

put it inside button tag

<button class="btn">
    <i class="fa fa-search" aria-hidden="true"></i>
</button>
发布评论

评论列表(0)

  1. 暂无评论