在 Javascript 或 HTML5 中尝试两个无需用户交互的下载链接
我的问题如下:
我向客户端提供一个网页,其中包含指向同一文件的两个不同的下载链接。我希望客户端(!)能够测试两者,而无需手动单击这两个链接(我仍然将它们呈现为故障安全)。这可以用 javascript 或 html5 来完成吗?
My problem is as follows:
I serve a webpage to clients that contains two different download links to the same file. I want the client(!) to test both without manually clicking both links (I still present them both as a fail safe). Can this be done with javascript or html5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以做的是发出 HTTP
HEAD
请求并查看状态代码。状态代码告诉您资源是否可用,而HEAD
请求本身不会获取资源内容。这可以通过 AJAX 来完成,具体取决于您的框架。
例如,使用 jQuery:
What you can do is making an HTTP
HEAD
request and look at the status code. The status code tells you whether the resource is available, while aHEAD
request does not fetch the resource contents itself.This can be done with AJAX, depending on your framework.
E.g. with jQuery:
设置
location = "some URL"
两次。Set
location = "some URL"
twice.试试这个:
当然是根据您的需求定制......
Try this:
Customized to your needs of course...