我有一个博客,它由 WordPress 提供支持。之前它有一个非响应式主题,今天我安装了一个响应式主题。我从一些免费的 html 主题构建了这个主题,从其他主题中收集了一些和平,在一周内修改并转换为 WordPress 主题,它是 HTML5、CSS3 和modernizr.js
.
现在,我有一个奇怪的问题,也就是说,在header.php
我有一个搜索输入并且它假设在输入时提交表单(默认行为),但是每当我按下输入时,它都不会提交表单。我几乎查看了每个JavaScript
文件,以查找是否有任何keydown
或类似的事件可能会阻止提交但没有找到任何东西,而且我也知道所有文件。这是该网站,目前仍在开发过程中,所以任何人都可以看看这个网站,如果我错过了什么,请告诉我,这是标记
<form method="get" id="searchbar" action="<?php bloginfo('url'); ?>/search.php" style="margin:0 0 -10px !important;" _lpchecked="1">
<input id="search-submit" type="submit" name="submit" />
<input id="search-bkg" type="text" name="s" placeholder="Type and press enter.." />
</form>
问题是,表单没有在输入时提交。也许我错过了一些东西,所以需要同伴的帮助或任何建议/提示来找出问题。谢谢!
更新:这是当前代码(这里有一些伙伴的建议)
<form action="<?php echo home_url() ?>/search.php" method="get">
<input id="search-submit" type="submit" name="submit" />
<input id="search-bkg" type="text" name="s" placeholder="Type and press enter.." />
</form>
这是浏览器中呈现的标记
<form action="http://heera.it/search.php" method="get" _lpchecked="1">
<input id="search-submit" type="submit" name="submit">
<input id="search-bkg" type="text" name="s" placeholder="Type and press enter.." style="margin-top: 2px; display: none; width: 0px;">
</form>
但是,没有发生任何变化,仍然存在同样的问题。