下面是一段 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)
然后一切都崩溃了。有没有办法让工具提示里面带引号?
您需要改用 HTML 转义字符:
"
Run Code Online (Sandbox Code Playgroud)
或者
"
Run Code Online (Sandbox Code Playgroud)
例子:
"word" or "word"
Run Code Online (Sandbox Code Playgroud)