HTML DOM 图像跨源属性用于设置或返回值跨域的属性<img>元素。该属性用于指定HTTP CORS 请求从第三方服务器获取或加载样式表或图标文件时。
用法:
- 它返回cross-origin属性。
imgObject.crossOrigin;
- 它用于设置cross-origin属性。
imgObject.crossorigin="anonymous | use-credentials;
属性值:
- anonymous: 它有一个默认值。它定义了将在不传递凭据信息的情况下发送的 CORS 请求。
- use-credentials: 将发送带有凭据、cookie 和证书的 cross-origin 请求。
例子:下面的 HTML 代码返回图像cross-origin属性。
HTML
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>DOM Image crossOrigin Property</h2>
<img id="myImage" align="center" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20220330170518/geeksimage-200x145.png"
width="200" height="200"
crossorigin="anonymous" />
<br><br>
<b>
Click on the below button to return
the crossorigin property
</b>
<br><br>
<button onclick="btnClick()">
Return
</button>
<h2 id="statusID" style="color:green;"></h2>
</center>
<script>
function btnClick() {
var txt = document.getElementById("myImage").crossOrigin;
document.getElementById("statusID").innerHTML = txt;
}
</script>
</body>
</html>
输出:
支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果浏览器
- Opera
相关用法
- HTML DOM Image useMap属性用法及代码示例
- HTML DOM Image isMap属性用法及代码示例
- HTML DOM Image align属性用法及代码示例
- HTML DOM Image alt属性用法及代码示例
- HTML DOM Image height属性用法及代码示例
- HTML DOM Image hspace属性用法及代码示例
- HTML DOM Image src属性用法及代码示例
- HTML DOM Image vspace属性用法及代码示例
- HTML DOM Image width属性用法及代码示例
- HTML DOM Images Collection属性用法及代码示例
- HTML DOM Image用法及代码示例
- HTML DOM Input Checkbox用法及代码示例
- HTML DOM Ins用法及代码示例
- HTML DOM InputEvent data属性用法及代码示例
- HTML DOM InputEvent inputType属性用法及代码示例
- HTML DOM Input FileUpload用法及代码示例
- HTML DOM Input Radio用法及代码示例
- HTML DOM Input Image用法及代码示例
- HTML DOM Input DatetimeLocal用法及代码示例
- HTML DOM Input Search用法及代码示例
- HTML DOM Input Month用法及代码示例
- HTML DOM Input Email用法及代码示例
- HTML DOM Input Datetime用法及代码示例
- HTML DOM Input Text用法及代码示例
- HTML DOM IFrame用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML DOM Image crossOrigin Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。