我已经尝试了我知道的每个javascript方法来弄清楚域是什么。我需要表单在按下按钮时做出不同的反应,基于它在哪个站点打开。到目前为止没有任何作用,我只能找到有关如何确定客户端是Reader还是浏览器的文档。但这对我没有帮助。
答案 0 :(得分:0)
in
运营商非常漂亮......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>JavaScript Domain</title>
<script type="application/javascript">
//<![CDATA[
window.onload = function(e)
{
for (i in window.location) {alert('i = '+i);}
alert(window.location.host);
alert(window.location.hostname);
}
//]]>
</script>
</head>
<body>
<div><p>JavaScript Domain</p></div>
</body>
</html>