私は次のことを望みます:
<span title="This is a "good" title.">Catch me in the rice.</span>
これがブラウザによって適切にレンダリングされないことは明らかです。「使用する必要があるエスケープ シーケンスまたはエンコーディングの情報を教えてください。
私は次のことを望みます:
<span title="This is a "good" title.">Catch me in the rice.</span>
これがブラウザによって適切にレンダリングされないことは明らかです。「使用する必要があるエスケープ シーケンスまたはエンコーディングの情報を教えてください。
"
代わりに使用してください。
次のように、引用符を対応する HTML エンティティ (例:"
または"
)に置き換えます。
<span title="This is a "good" title.">Catch me in the rice.</span>
<span title="This is a "good" title.">Catch me in the rice.</span>
または、属性値に二重引用符が必要な場合は、HTML で単一引用符を使用できます。
<span title='This is a "good" title.'>Catch me in the rice.</span>
<span title="This is a "good" title.">Catch me in the rise.</span>