在我更改表单样式之前,我的搜索功能很好。
现在搜索不会提交。
这是我的searchform.php:
<button type="button" class="close">×</button>
<form role="search" method="get" action="<?php echo home_url( '/' ); ?>">
<input type="search" value="<?php get_search_query(); ?>" name="s" placeholder="search..." title="Search" />
<button type="submit" id="searchsubmit" class="btn btn-default btn-search" value="Search"><i class="fa fa-search fa-4x"></i></button>
</form>
我正在网站http://www.2knowmusic.net上进行开发。搜索位于右上方。
答案 0 :(得分:1)
检查您的页脚或以下位置。在源代码中,您有:
//Do not include! This prevents the form from submitting for DEMO purposes only!
$('form').submit(function(event) {
event.preventDefault();
return false;
})
这会阻止您的表单被提交,这就是为什么它没有做任何事情。