如何使用 jquery 添加 ul 元素的样式?
How to add ul element's style with jquery?
我想为使用 js 创建的 ul 元素设置样式
<ul class="form">
...
<ul>
$("ul.form").css({
display: "none",
color: "red",
width, height & other style elements
...
});
使用 jQuery 您应该能够使用以下方法之一来获得您需要的结果。
$("ul.form").css("background-color", "#000000");
$("ul.form").css({backgroundColor: "#000000"});
$("ul.form").attr("style", "background-color: #000000;");
我想为使用 js 创建的 ul 元素设置样式
<ul class="form">
...
<ul>
$("ul.form").css({
display: "none",
color: "red",
width, height & other style elements
...
});
使用 jQuery 您应该能够使用以下方法之一来获得您需要的结果。
$("ul.form").css("background-color", "#000000");
$("ul.form").css({backgroundColor: "#000000"});
$("ul.form").attr("style", "background-color: #000000;");