如何阅读文件并在我的页面中返回搜索结果?

时间:2016-02-15 09:36:28

标签: javascript html

我有一个搜索栏,当我按下搜索按钮时,它会在您的计算机上找到文本文件中的关键字,然后找到返回页面的文字?



document.getElementById('frmSearch').onsubmit = function() {
  window.location = 'http://www.google.ro/search?q=' + document.getElementById('txtSearch').value;
}

<form id="frmSearch"  class="search1" method="get" action="default.html" />
<input class="search" id="txtSearch" type="text" name="search_bar" size="31" maxlength="255" value="" 
        style="left: 396px; top: 20000px; width: 293px; height: 60px;" />
     <input class="search2" type="submit" name="submition" value="Cauta" style=" padding-bottom:20px; left: 300px; top: 0px; height: 50px" />
     <input class="search2" type="hidden" name="sitesearch" value="default.html" />
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:0)

抱歉,脚本只能执行与Web相关的操作。出于安全原因,访问本地文件是不安全的,并且是禁止的。

<强> UPD: 对于离线应用,您可以使用以下内容:

height

答案 1 :(得分:-1)

@Horia,您应该使用Google搜索框及其自定义搜索引擎和API,而不是iframe。这种堆栈溢出可能会解决您的问题。 What are the alternatives now that the Google web search API has been deprecated?