0
我正在嘗試使用framework7創建一個自定義搜索searchBar
元素。我目前使用的代碼工作,當按下搜索按鈕時,應用程序被重定向到另一個頁面。我遇到的問題是,當應用程序打開頁面時,鍵盤保持打開狀態。Framework7 - SearchBar關閉鍵盤
按下按鈕Search
時,有沒有辦法強制鍵盤關閉? HTML:
<form class="searchbar">
<div class="searchbar-input">
<input type="search" placeholder="Search" style=" background-image: url(img/search.png);">
<a href="#" class="searchbar-clear"></a>
</div>
</form>
JS
$$('.searchbar').on("search", function (e) {
//close the keyboard
mainView.router.load({
url: 'productlist.html'
});
});