我有这段代码,我想知道如何设置 id 值<h4>
并知道 id 是否有效。
container.insert({ bottom: '<h4 style="margin:8px 0px 4px 0px; padding-left:0px ; select id=comment_'+ l +'">' + l + '</h4>' });
我需要这个,所以我可以<h4>
根据组合框的值隐藏/显示它。
或者有没有更简单的方法来做到这一点?
我有这段代码,我想知道如何设置 id 值<h4>
并知道 id 是否有效。
container.insert({ bottom: '<h4 style="margin:8px 0px 4px 0px; padding-left:0px ; select id=comment_'+ l +'">' + l + '</h4>' });
我需要这个,所以我可以<h4>
根据组合框的值隐藏/显示它。
或者有没有更简单的方法来做到这一点?
您在 H4 上的属性似乎格式错误,解释了为什么您无法通过 id 选择器导航到 h4
<h4 style="margin:8px 0px 4px 0px; padding-left:0px ; select id=comment_'+ l +'">
应该
<h4 style="margin:8px 0px 4px 0px; padding-left:0px;" id="comment_'+ l +'">
您可以为您喜欢的任何元素赋予 id 属性,甚至是 script/link/head 和其他标签。
您可以将 ID 添加到您喜欢的任何元素。至于它的有效性:
ID 和 NAME 标记必须以字母 ([A-Za-z]) 开头,后跟任意数量的字母、数字 ([0-9])、连字符 ("-")、下划线 ("_") , 冒号 (":") 和句点 (".")。