-4

How to check if document.domain is set on a page, and return it's value?

Update

before the barrage of negativity, I was inquiring about how to get the document.domain value when it's been explicitly set.

What I ended up with was

if(window.location.hostname !== document.domain)

this will tell you if document.domain has been set explicitly on a page.

4

3 回答 3

0

访问任何变量的方式相同。

你想用它做什么?“回归”它在哪里?

例如,您可以在消息框中轻松地将其弹​​出:

alert(document.domain);

或者用它做任何你喜欢的事情。

如果未设置,则结果为undefined.

于 2013-02-24T22:23:45.903 回答
0
if(window.location.hostname !== document.domain)

是如何检查 document.domain 是否被显式设置 - 通过将 document.domain 变量与主机名进行比较,如果以上返回为 true,则 document.domain 正在页面上重新分配。

于 2013-03-13T14:45:36.390 回答
-1

嗯...你只是做

document.domain

于 2013-02-24T22:23:55.987 回答