在 HTML 和 CSS 中使用帶有雜湊字元的 ID 選擇器
在 HTML 中,ID 用於唯一標識元素。但是,在 ID 值中使用特殊元字元(例如井號 (#) 符號)時,會出現問題。本文探討了以下程式碼失敗的原因:
<code class="html"><div id='test#1'>test1</div> <div id='test#2'>test2</div></code>
<code class="css">#test#1 { color: red; }</code>
<code class="javascript">$('#test#2').css('color', 'blue');</code>
說明:
元字元(包括#)在CSS 中具有特殊意義和jQuery 選擇器。為了克服這個問題,元字元必須使用反斜線 () 進行轉義。
解決方案:
CSS:
<code class="css">#test\#1 { color: red; }</code>
jQuery:
<code class="javascript">$('#test\#2').css('color', 'blue');</code>建議:
通常不建議在ID 值中使用#。 W3C 建議在 ID 中僅使用字母、數字、連字號、底線、冒號和句點。
替代語法:轉義雜湊字元是另一種方法,但更好的做法是完全避免在 ID 中使用 #。例如,不要使用 id="test#1",而是使用 id="test1"。
以上是為什麼我不能在 HTML ID 中使用井號 (#) 以及如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!