JavaScript Reference/Javascript Properties/domain — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:22, 26 мая 2010
"domain" Example
<html>
<body>
<script language="JavaScript">
function function1() {
var m = document.domain;
if (m) {
alert(m);
} else {
alert("No security domain");
}
}
</script>
<input type="button" onClick="function1();" value="Domain Name">
</body>
</html>
"domain" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |document |
+----------------+--------------------------------------------------------------+
"domain" Syntax and Note
Note:
Read and write property.
Sets the document security domain name.
Syntax:
document.domain = value