有没有办法清除使用javascript的html表单自动完成

zdwk9cvp  于 2022-12-21  发布在  Java
关注(0)|答案(1)|浏览(135)

我正在创建一个网页搜索引擎这里是我的代码:

<!-- Searching script -->
<script>
  function show() {
    const s = document.getElementById('inputId').value;
    window.location.replace("https://www.google.com/search?q=" + s);
  }

  function clear() {
    <!-- I do not know how to write the code for this part -->
  }
</script>

<input onclick="clear()" type="button">Clear Browsing History</input>
<h1>Search The Web</h1>
<!-- Search Button and input -->
<form id="searchForm" onsubmit="event.preventDefault()">
  <input type="search" name="searchField" id="inputId" placeholder="Search QuickSearch">
  <input type="submit" value="Search" onclick="show()">
</form>

我真的不知道该怎么做

syqv5f0l

syqv5f0l1#

这就是答案。无法清除历史记录唯一的方法是使用div框重新创建历史记录。

相关问题