XHTML/HTML/JS 语法:什么时候使用 &?
我很困惑何时应该使用 &当我应该使用 &
时,特别是当它位于 HTML 中的 Javascript 中时。
这两个 URL 中的哪一个(或两者或都不使用)应使用 html 编码?
<!-- 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>
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 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.在第一个示例中,它应该是
&
。第二个应该是&
In the first example it should be
&
. In the second it should be&