当我执行复制粘贴时,搜索栏不工作

Search bar is not working when I perform a copy paste

本文关键字:搜索栏 工作 执行 复制      更新时间:2023-09-26

搜索栏只有在我输入它并按回车时才有效,但如果我从另一个网站复制一个单词并粘贴它,它不会搜索,除非我点击它编辑(通过添加一个空格然后删除空格),只有这样我才能按回车键。我添加了脚本,这样人们就不会在它是空的情况下直接输入,但现在我认为它弄乱了搜索栏。我怎样才能不经过编辑就复制粘贴一个单词呢?

编辑:

  <form action='/search.php' method='GET'>
    <input id='searchbar' type='text' name='search' placeholder="search for movies &  shows" maxlength="50" required />
    <input id='submit' type='submit' name='submit' value='Search' disabled />
</form>
<script>
document.getElementById('searchbar').onkeypress = function() {
    document.getElementById('submit').disabled = !this.value.trim();
}
</script>

试试这个

document.getElementById('searchbar').oninput = function() {
    document.getElementById('submit').disabled = !this.value.trim();
}