href URL 无效

发布于 2024-07-28 21:58:14 字数 762 浏览 4 评论 0原文

例如,我有一个 URL,有人在特定 CMS 表单字段中输入该 URL,以显示在网站上:http://seneca.sunyconnect.suny.edu:4730/F/?request=79396&func=find-b&find_code= sys&local_base=her01pub

并输出以下 html:

<a href="http://seneca.sunyconnect.suny.edu:4730/F/?request=79396&func=find-b&find_code=sys&local_base=her01pub" title="The Sociology of Sports" rel="external">The Sociology of Sports</a>

它不被视为有效,并带有警告消息: unescaped & 或未知实体“&func”,以及另一个警告:未转义的 & 或未知实体“&find_code”

我知道 func & find_code 是通过 URL 传递的元素,但有没有办法使其有效& 还是让它去正确的目的地?

For example, I have a URL, that someone entered into a specific CMS form field, to display on the website: http://seneca.sunyconnect.suny.edu:4730/F/?request=79396&func=find-b&find_code=sys&local_base=her01pub

and it outputs the following html:

<a href="http://seneca.sunyconnect.suny.edu:4730/F/?request=79396&func=find-b&find_code=sys&local_base=her01pub" title="The Sociology of Sports" rel="external">The Sociology of Sports</a>

It is not considered valid, with the warning message: unescaped & or unknown entity "&func", as well as another warning: unescaped & or unknown entity "&find_code"

I know func & find_code are elements being passed thru the URL, but is there a way to make it valid & still allow it to go to the correct destination?

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

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

发布评论

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

评论(2

×眷恋的温暖 2024-08-04 21:58:14

只需将所有未转义的与号 (&) 替换为 &

Just replace any unescaped ampersands (&) with &

猫瑾少女 2024-08-04 21:58:14

使用 &

<a href="http://seneca.sunyconnect.suny.edu:4730/F/?request=79396&func=find-b&find_code=sys&local_base=her01pub" title="The Sociology of Sports" rel="external">The Sociology of Sports</a>

请参阅 & 符号 (&'s)在 URL 中了解更多信息。

Use &:

<a href="http://seneca.sunyconnect.suny.edu:4730/F/?request=79396&func=find-b&find_code=sys&local_base=her01pub" title="The Sociology of Sports" rel="external">The Sociology of Sports</a>

See Ampersands (&'s) in URLs for more information.

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