Home >Web Front-end >HTML Tutorial >img图片无法显示利用onerror事件显示替代图片_html/css_WEB-ITnose

img图片无法显示利用onerror事件显示替代图片_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:27:151540browse

URL属性的定义和用法:
此属性可返回当前文档的URL。
说明:该属性的值与包含文档的Window的location.href属性相同,但是在URL重定向发生的时候,这个URL属性保存了文档的实际URL,而 location.href保存了请求的URL。
语法结构:

document.URL

浏览器支持:
1.IE浏览器支持此属性。
2.火狐浏览器支持此属性。
3.Opera浏览器支持此属性。
4.谷歌浏览器支持此属性。
实例代码:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><script type="text/javascript">window.onload=function(){  var odiv=document.getElementById("softwhy");  odiv.innerHTML=document.URL;}</script></head><body><div id="softwhy"></div></body></html>

以上代码可以输出当前文档的URL。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=6865

更多内容可以参阅:http://www.softwhy.com/javascript/

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn