Ipad/mobile 和 html 编码的 Jquery URL 链接

发布于 2024-12-09 09:39:09 字数 890 浏览 0 评论 0原文

我制作了一个网络应用程序,我们正在使用 imageflow

并且在图像的描述中我们有一个指向另一个图像的链接我们网站的一部分。问题是 href 必须是 html 编码的,否则它会破坏描述并将 url 放在错误的位置。因此,它不适用于移动设备或 ipad/手机。

我可以使用替代方法来编码而不是使用 $quot; 吗?例如,或者我可以使用某种类型的修复来使其在移动设备上正常运行?

<img src="image/img1.jpg" longdesc="setup.php" alt="&lt;strong&gt;Name1&lt;/strong&gt;&lt;br /&gt;Birthday1&lt;br /&gt;&lt;a href=&quot;profile.php&quot;&gt;View Profile&lt;/a&gt; / &lt;a href=&quot;photos.php&quot;&gt;Photos&lt;/a&gt;&lt;br /&gt;&lt;span class=&quot;greenText&quot;&gt;&lt;strong&gt;Question&lt;/strong&gt; &lt;a href=&quot;ask.php&quot;&gt;Ask them!&lt;/a&gt; " /> 

每张图都是这样的。 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 技术交流群。

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

发布评论

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

评论(1

三五鸿雁 2024-12-16 09:39:09

您有几个选项可以转义引号:

  • "
  • "
  • %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.

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