我有这个代码,帮助skobaljic在div中添加类的标题
$(document).on('ready', function() {
$("[title*='animotion']").addClass(function(){
$(this).parent().css('overflow','visible');
return $(this).attr('title');
}).removeAttr('title');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<p><img src="http://placehold.it/350x150" title="animotion newClass new1" /></p>
如何使用jQuery将这些新类添加到style.css?
答案 0 :(得分:0)
简短的回答是 - 你不这样做。
在css文件中定义样式,然后使用html中的类 - 无论是内联添加还是由jQuery操作 - 将css规则附加到html元素。您的css文件在使用时不会发生变化。您的html文档可能会根据应用的javascript进行更改,但源文件保持不变。