如何在HTML中制作带引号的工具提示?

bri*_*ant 1 html tooltip

下面是一段 HTML 代码:

   <span title="Download this file to your computer">
   <a href="URL">
   <img src="SomeOtherURL" alt="Download" style="width:42px;height:22px;border:0">
   </a></span>
Run Code Online (Sandbox Code Playgroud)

工作正常,除非我的标题中没有引号。

然而,当它发生时:

<span title="Download "Shanghai Surprise" to your computer">
<a href="URL">
<img src="SomeOtherURL" alt="Download" style="width:42px;height:22px;border:0">
</a></span>
Run Code Online (Sandbox Code Playgroud)

然后一切都崩溃了。有没有办法让工具提示里面带引号?

jmo*_*009 6

您需要改用 HTML 转义字符:

&#34;
Run Code Online (Sandbox Code Playgroud)

或者

&quot;
Run Code Online (Sandbox Code Playgroud)

例子:

&#34;word&#34; or  &quot;word&quot;
Run Code Online (Sandbox Code Playgroud)

小提琴