从外部 URL 客户端获取数据

发布于 2024-12-18 21:33:45 字数 273 浏览 1 评论 0原文

我想从用户输入的任何外部 URL 中获取诸如(标题,一些描述)之类的数据。

就像在 facebook 中一样,当我们复制外部 url 时,它会从该 url 中获取一些信息。

有什么方法可以通过一些 jquery 插件或其他东西在客户端执行此操作吗?

编辑:就像在 facebook status 中说的那样,我复制“www.stackoverflow.com”,它会从中获取标题和更多信息;我需要有非常相似的东西。是否有任何 jquery 插件可以从 url 获取类似的基本信息...

I want to fetch data like (title,some description) from any external URL the user enters.

Like in facebook, when we copy an external url , it fetches some information from that url..

Is there any way to do it clientside by some jquery plugin or something... ?

EDIT : Like say in facebook status , i copy 'www.stackoverflow.com' , it fetches title, and some more information from it ; I need to have quite similar thing . Isn't there any jquery plugin that can fetch similar basic info from url...

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

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

发布评论

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

评论(3

2024-12-25 21:33:45

使用 jQuery ajax

jQuery.ajax( url [, settings] )
jQuery.get( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )

http://api.jquery.com/jQuery.get/

http://api.jquery.com/jQuery.ajax/

Use jQuery ajax

jQuery.ajax( url [, settings] )
jQuery.get( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )

http://api.jquery.com/jQuery.get/

http://api.jquery.com/jQuery.ajax/

如果没有 2024-12-25 21:33:45

如果您只想显示某些内容,可以使用 iframe 元素,并使用 jQuery 动态设置其源。

if you want to just display something , you can use iframe element , setting its source dynamically with jQuery.

长亭外,古道边 2024-12-25 21:33:45

如果您的意思是从网页检索 Html 代码,则可以使用 WebClient.DownloadString 方法:

WebClient client = new WebClient();
String htmlCode = client.DownloadString("http://videoonfacebook.com");

之后,您可以过滤您想要的内容,例如 TITLE、DESC 等。
希望这对

古拉夫有帮助

If you mean retrieving the Html code from a webpage, you can use the WebClient.DownloadString method:

WebClient client = new WebClient();
String htmlCode = client.DownloadString("http://videoonfacebook.com");

After that you can filter what ever you want .like TITLE,DESC etc..
Hope this help

Gourav

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