我试图在锚的title属性中使用包含双引号的字符串.到目前为止,我试过这些:
<a href=".." title="Some \"text\"">Some text</a>
<!-- The title looks like `Some \` --!>
Run Code Online (Sandbox Code Playgroud)
和
<a href=".." title="Some "text"">Some text</a>
<!-- The title looks like `Some ` --!>
Run Code Online (Sandbox Code Playgroud)
请注意,使用单引号不是一种选择.