How to remove x and y on submit in HTML form with Image type button?

前端 未结 4 1752
无人及你
无人及你 2020-12-02 22:04

I have created a form in my application as follows:

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-02 22:58

    document.getElementById("formid").submit = function() {
        location = "/search/?search=" + encodeURIComponent( document.getElementById("search-box").value );
        return false;
    };
    

提交回复
热议问题