我有這個代碼用於在我的網站上進行搜索。當你填寫你的搜索詞並按下回車鍵,它會執行命令。不過,我只想在用戶按下按鈕時執行搜索腳本。我無法得到它的工作。帶按鈕的搜索表單
jQuery(document).ready(function($){
var input = $('[data-search-input]');
input.on('keypress', function(event) {
if (event.which == 13 && input.val().length > 3) {
event.preventDefault();
window.location.href = input.data('search-input') + '{{ config.system.param_sep }}' + input.val();
}
});
});
<input class="zoekveld" type="text" placeholder="Zoeken..." value="{{ query }}" data-search-input="{{ base_url }}{{ config.plugins.simplesearch.route}}/query" />
正如你可以看到我用JavaScript來使通過輸入點擊工作搜索。但我想用一個按鈕來完成它。我希望你們能幫我解決這個問題。在按鈕的點擊
$(yourbutton)。點擊(函數(){}); [JQUERY DOCS](https://api.jquery.com/click/) – theblackgigant