从外部 URL 客户端获取数据
我想从用户输入的任何外部 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 jQuery ajax
http://api.jquery.com/jQuery.get/
http://api.jquery.com/jQuery.ajax/
Use jQuery ajax
http://api.jquery.com/jQuery.get/
http://api.jquery.com/jQuery.ajax/
如果您只想显示某些内容,可以使用 iframe 元素,并使用 jQuery 动态设置其源。
if you want to just display something , you can use
iframe
element , setting its source dynamically with jQuery.如果您的意思是从网页检索 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