href URL 无效
例如,我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将所有未转义的与号 (&) 替换为 &
Just replace any unescaped ampersands (&) with &
使用
&
:请参阅 & 符号 (&'s)在 URL 中了解更多信息。
Use
&
:See Ampersands (&'s) in URLs for more information.