XHTML/HTML/JS 语法:什么时候使用 &?

发布于 2024-12-02 11:40:24 字数 495 浏览 0 评论 0原文

我很困惑何时应该使用 &当我应该使用 & 时,特别是当它位于 HTML 中的 Javascript 中时。

这两个 URL 中的哪一个(或两者或都不使用)应使用 html 编码?

<!-- Example 1 -->
<script type='text/javascript'>
    var myUrl = "myurl.html?bob=2&mary=3"; // or is it &amp;?
    downloadUrl(myUrl);
</script>

<!-- Example 2 -->
<p>Click <a href="myurl.html?bob=2&mary=3">here</a> <!-- &amp;? --> if the download doesn't start.</p>

I am confused when I should use & and when I should use &, specifically when it's inside Javascript inside HTML.

Which (or both or neither) of these two URLs should use html-encoding?

<!-- Example 1 -->
<script type='text/javascript'>
    var myUrl = "myurl.html?bob=2&mary=3"; // or is it &?
    downloadUrl(myUrl);
</script>

<!-- Example 2 -->
<p>Click <a href="myurl.html?bob=2&mary=3">here</a> <!-- &? --> if the download doesn't start.</p>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮生未歇 2024-12-09 11:40:24

在 HTML 中,您应该使用 & 而不是 &。在 XHTML/XML 中,您必须使用 & 而不是 &。这也适用于内联 JavaScript 代码。这不适用于由完整的 .js 文件提供的 JavaScript 代码,除非文本成为 HTML DOM 树的一部分。

In HTML, you should use & instead of &. In XHTML/XML, you must use & instead of &. This also applies to inline JavaScript code. This doesn't apply to JavaScript code served by fullworthy .js files unless the text becomes part of the HTML DOM tree.

记忆里有你的影子 2024-12-09 11:40:24

在第一个示例中,它应该是 &。第二个应该是 &

In the first example it should be &. In the second it should be &

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文