简体   繁体   中英

Is sub-domain considered cross-domain?

Is http://nonsecure.form.xyz.org and https://secure.form.xyz.org considered different domain? I am asking this because my javascript in secure one cannot call it's parent. Secure domain is inside non-secure domain through an iframe.

EDIT

Conclusion

You can perform cross-domain scripting but cannot perform cross-protocol scripting (eg https and http)

What you can do here is set document.domain = "form.xyz.org" on both sides before attempting any cross-domain scripting.

However, you cannot cross-script between different protocols.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM