Ipad/mobile 和 html 编码的 Jquery URL 链接
我制作了一个网络应用程序,我们正在使用 imageflow
并且在图像的描述中我们有一个指向另一个图像的链接我们网站的一部分。问题是 href 必须是 html 编码的,否则它会破坏描述并将 url 放在错误的位置。因此,它不适用于移动设备或 ipad/手机。
我可以使用替代方法来编码而不是使用 $quot; 吗?例如,或者我可以使用某种类型的修复来使其在移动设备上正常运行?
<img src="image/img1.jpg" longdesc="setup.php" alt="<strong>Name1</strong><br />Birthday1<br /><a href="profile.php">View Profile</a> / <a href="photos.php">Photos</a><br /><span class="greenText"><strong>Question</strong> <a href="ask.php">Ask them!</a> " />
每张图都是这样的。 Imageflow 应用程序要求在 alt 描述中对 URL 进行编码。
I have made a web app and we are using imageflow
And in the description for the image we have a link to another part of our website. The problem is that the href has to be html encoded or else it breaks the decription and places the url in the wrong place. Because of this it does not work on mobile or the ipad/phone.
Is there a alternitive i can use to encode instead of using $quot; for example or some type of fix i can use to get this to play nice with mobile?
<img src="image/img1.jpg" longdesc="setup.php" alt="<strong>Name1</strong><br />Birthday1<br /><a href="profile.php">View Profile</a> / <a href="photos.php">Photos</a><br /><span class="greenText"><strong>Question</strong> <a href="ask.php">Ask them!</a> " />
Each image is like this. The Imageflow app asks that the urls to be encoded in the alt description.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有几个选项可以转义引号:
"
"
%22
(最短的)如果可能,我建议将 URL 更改为更合适的 URL。
You've got a few options to escape a quote:
"
"
%22
(shortest one)If possible, I recommend to change the URL to a more appropriate URL instead.