आधिकारिक विनिर्देश क्रॉस-ओरिजिन एट्रिब्यूट को -
. के रूप में बताता हैThe crossorigin attribute is a CORS settings attribute. Its purpose is to allow images from third-party sites that allow cross-origin access to be used with canvas.
जब इसे CORS हेडर के साथ जोड़ा जाता है, तो यह तत्व द्वारा परिभाषित छवियों को कैनवास में उपयोग करने के लिए विदेशी मूल से लोड करने की अनुमति देगा। प्रक्रिया वर्तमान मूल से लोड होने जैसी होगी।
आप इसका उपयोग जावास्क्रिप्ट त्रुटियों को हल करने के लिए कर सकते हैं जैसे js त्रुटियों को लॉग करना -
if (securityOrigin()->canRequest(targetUrl)) { msg = myError; line = myLineNumber; source = sourceURL; } else { msg = "Error!"; source = String(); line = 0; }