我问我是否可以获取当前网页以外的网页节点列表而不在浏览器窗口中打开。我要做的就是获取某些URL网页的内容(所有元素)并提取某些信息(使用getElementbyID等)。原因是我正在设计一个网页,该网页采用医学术语,用户输入字符串,我的脚本将加载一些其他网站(幕后)以获取有关医学术语的信息并向用户显示医学术语的定义而无需重新使用 - 将用户引导到其他网站。
注意:我是Java脚本,HTML,CSS的初学者。它假设是一个简单的网站
<html>
<script>
function myfunction() {
var url_query = "www.search-website.com?" + document.getElementsByName("term");
//some code to grab all the nodes for url_query
// get the definition of the medical term
// display it to the current website
}
</script>
<body>
Term to search: <input type="text" name="term"><br>
<button type="button" onclick="myfunction()"> click me </button>
</body>
</html>