📜  如何在 jquery 中使用 css - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:41.556000             🧑  作者: Mango

代码示例2
$(init);
    
function init() {
    $("h1").css("backgroundColor", "yellow");
    $("#myParagraph").css({ "backgroundColor": "black", "color": "white" });
    $(".bordered").css("border", "1px solid black");
}