答案 0 :(得分:1)
添加一个jQuery函数,当单击按钮时,它将重定向到另一个URL。
jQuery(document).ready(function() {
$('.deleteBtn').on('click', function() {
var selectValue = $('.search').find('select').val()
window.location.replace("/result/name/" + selectValue);
})
})
我会在您的元素中添加一些ID,以便更轻松地获取数据。