如何使用 Javascript 从网站读取文本?

发布于 2024-09-08 01:55:34 字数 277 浏览 5 评论 0原文

我正在为我的手机编写 HTML 代码。它本质上是一个词典应用程序,我可以在其中输入一个单词,然后从 Dictionary.com 等网站查找其含义;

我正在使用 Javascript 来获取字符串,但我可以将单词嵌入到 URL 中吗?“http://dictionary. Reference.com/browse/

有什么方法可以做到这一点吗?

I am writing an HTML code for my cell phone. Its essentially a Dictionary App where I input a word and I look up the meaning from say, Dictionary.com ;

I am using Javascript to get the string but can I embed the word into the URL, "http://dictionary.reference.com/browse/"

Is there any way of doing this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木森分化 2024-09-15 01:55:34

您可以通过执行以下操作将单词嵌入到网址中:

var lookup_url = "http://dictionary.reference.com/browse/" + your_word

从那里,这取决于您想要如何加载网站。不幸的是,没有办法用 JavaScript 远程查询网站。您将不得不使用您可以使用的其他工具。在那之前,也许您可​​以只执行 window.location = Lookup_url

You can embed the word into the url by doing this:

var lookup_url = "http://dictionary.reference.com/browse/" + your_word

From there, it depends on how you want to load the website. Unfortunately, there is no way to remotely query the website from afar in JavaScript. You're going to have to use some other tool you have at your disposal. Until then, maybe you can just do window.location = lookup_url ?

仅此而已 2024-09-15 01:55:34

由于同源政策限制,这对于纯JavaScript来说是不可能的。如果第三方网站提供支持 JSONP那么这可以工作,但在一般情况下不行。

Due to same origin policy restrictions this is not possible with pure javascript. If the third party web site provides an API that supports JSONP then this could work but not in the general case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文