gpt4 book ai didi

JavaScript document.write 不工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:08:26 27 4
gpt4 key购买 nike

抱歉,如果这看起来很愚蠢,我是 JavaScript 的新手。

这是在 menu.js 中:

document.write("<a href="index.html">Home</a>");
document.write("<a href="news.html">News</a>");
document.write("<a href="about.html">About us</a>");

这是在 index.html 中:

<head>
</head>
<body>
<script type="text/javascript" src="menu.js"></script>
</body>
</html>

当我加载 index.html 时,什么也没有出现...

最佳答案

问题是你的报价,你使用的是"既要分隔你的新元素又要设置它们的 href属性,将您的代码更改为:

document.write("<a href='index.html'>Home</a>");
document.write("<a href='news.html'>News</a>");
document.write("<a href='about.html'>About us</a>");

或者:

document.write('<a href="index.html">Home</a>');
document.write('<a href="news.html">News</a>');
document.write('<a href="about.html">About us</a>');

结合单引号 ( ' ) 和双引号 ( " )。您还可以转义内部引号 ( document.write("<a href=\"index.html\">Home</a>");

但最好只调用一次 document.write() ,像这样:

document.write('<a href="index.html">Home</a>' 
+ '<a href="news.html">News</a>'
+ '<a href="about.html">About us</a>');

关于JavaScript document.write 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18276223/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com