jquery 点击等笔记

50 阅读1分钟
   // 阻止筛选按钮的默认点击事件
    document.getElementById("handSearchButton").addEventListener("click", function(event){
        event.preventDefault(); 
    });
    // 点击筛选按钮
    $('#handSearchButton').on('click', function() {
        var keyword = $('#handFilterInput').val().trim().toLowerCase(); // 获取搜索关键字并转为小写
        searchButton(keyword)
    });