首页 > 解决方案 > 将 JSON & JS 嵌入 HTML 表单

问题描述

我正在尝试将我的 JS 和 JSON 嵌入到我的 HTML 表单中。

关于如何做的任何想法?以及我应该将 .js 和 .json 放在哪里?我的 JSON 目前有 1800 行长,所以我不会包括在内。从事操作系统项目。只希望我的 JS 在提交时触发 JSON 功能。有没有一种简单的方法可以在表单中链接两者?

我的搜索条形码位于下方。

<form target="_blank" action="https://google.com">
   <div class="inner-form">
      <div class="input-field first-wrap">
         <div class="svg-wrapper">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
               <path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
            </svg>
         </div>
         <input id="search" type="text" placeholder="Paste a domain here" />
      </div>
      <div class="input-field second-wrap">
         <button class="btn-search" action="https://www.google.com" type="submit">SEARCH</button>
      </div>
   </div>
   <span class="info">ex. JeepBeef.com</span>
</form>

标签: javascripthtmlnode.jsjson

解决方案


推荐阅读