gpt4 book ai didi

javascript - 创建样式元素,定义一些类并将类添加到元素

转载 作者:行者123 更新时间:2023-11-28 19:01:05 26 4
gpt4 key购买 nike

有没有更好的办法?

$("< style >").attr("type","text/css").prependTo("head").append(".bor {border:2px dotted red} .gto {padding:10px; font-size:medium}");

$("input:text").addClass("bor gto").val("your text");

http://jsfiddle.net/adatepe/aLmc2/

最佳答案

也许你可以 set the CSS directly而不是尝试在运行时构建 CSS 类:

$('input:text').css({
border: '2px dotted red',
padding: '10px',
fontSize: 'medium'
}).val('your text');

关于javascript - 创建样式元素,定义一些类并将类添加到元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5781307/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com