这个网址有什么问题吗?

发布于 2024-09-24 09:06:46 字数 288 浏览 0 评论 0原文

为什么 Xul 应用程序说

XML 解析错误:格式不正确

    <browser class="AppBar" type="content" src="test.html?img1=img1.jpg&img2=img2.jpg" flex="4"/>

&img2=img2.jpg" 的等号处?

请注意,它无需参数即可工作。

Why is Xul app saying

XML Parsing Error: not well-formed

for:

    <browser class="AppBar" type="content" src="test.html?img1=img1.jpg&img2=img2.jpg" flex="4"/>

at the equals sign of &img2=img2.jpg"?

Note that it works without the parameters.

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

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

发布评论

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

评论(2

装迷糊 2024-10-01 09:06:46

&&..

xml转义一般是&

<browser class="AppBar" type="content" src="test.html?img1=img1.jpg&img2=img2.jpg" flex="4"/>

Ampersand &..

The xml escape is generally &

<browser class="AppBar" type="content" src="test.html?img1=img1.jpg&img2=img2.jpg" flex="4"/>
我的痛♀有谁懂 2024-10-01 09:06:46

改变&到 &

您还必须执行

' -> '
< -> <
> -> >
" -> "

Change & to &

You also have to do this for

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