我希望我网站中的网页自动加载不同的文档或执行一段代码 if window.location.host == "subdomain.mywebsite.com"
并且它应该加载一个新文档 if window.location.host == "mywebsite.com"
。
我曾尝试将 if...else 语句与逻辑运算符一起使用,但它似乎不起作用,这是我的代码。
<!DOCTYPE html>
<html>
<script>
var ATurl=window.location.host;
document.write(ATurl);
if(ATurl == downloads.wping.tk) {
document.write("--an html function to execute here--");
)
else {
document.write("--another html function to execute here!--");
}
</script>
</html>
有人可以帮我写代码。也许在某个地方错了!谢谢