The example in this article describes the method of using js to implement a tag hyperlink to submit a form. Share it with everyone for your reference. The specific implementation method is as follows:
<form action="/home/search" method="get" id="search_form"> <div class="searchBox png" id="searchBox"> <input type="text" id="searchTxt" class="searchTxt" name="shopName" value="@shopName"> <a class="searchPic h-submitBtn png" id="h-submitBtn" onclick="document:search_form.submit();"> </a> </div> </form>
The a tag here can be written in the following ways:
Method 1:
Method 2:
Method 3:
I hope this article will be helpful to everyone’s JavaScript programming design.