输入有问题。当我完成它并按下按钮时,此按钮上的.click功能不起作用,输入保持聚焦。
你能告诉我这是怎么回事吗?
<div style="border-width: 2px; background-color: #34495e; border-style: solid; position: fixed; padding: 5px; top: 0; right: 0; max-width: 300px; z-index: 999;">
<input type="text" id="search21" />
<button type="button" id="submit_form" >Cautare</button>
</div>
<script type="text/javascript">
$('#submit_form').click(function(){
var queryre = $('#search21').val();
find(queryre);
return true;
})
</script>
更新 我发现的问题是使用此代码我尝试模拟CTRL + F并在输入中找到第一个单词并在那里被阻止(
答案 0 :(得分:0)
<button type="submit" id="submit_form" >Cautare</button>
将按钮标记更改为上面的代码。 它会起作用。