jquery 插件 - css 作为参数
我正在编写一个新的 jquery 插件,它接受两个参数。 第一个是字符串数组,第二个是颜色代码数组(如#CCC)
我在插件中所做的是使用第一个数组中的字符串来制作一个看起来像这样的菜单:
<ul>
<li><a class="Link0">string1</a></li>
<li><a class="Link1">string2</a></li>
</ul>
我只是迭代数组并创建具有正确类的元素。 我现在需要的是一种将第二个数组中的颜色分配给类的方法。
$.each(settings.categoryColors, function(i, val) {
$('a.Link'+i).css('background-color',val);
});
问题是这些类也将动态添加到日期选择器的元素中。 所以我需要一种方法来设置类,而不是用类更新元素。
换句话说,我需要一种方法来创建 css 类,以便之后接收类的所有元素都具有相同的颜色。
我希望这是有道理的。
i'm writing a new jquery plugin which accepts among others two parameters.
the first is an array of strings, the second an array of color codes (like #CCC)
what i'm doing in my plugin is using the strings in the first array to make a menu that looks something like this:
<ul>
<li><a class="Link0">string1</a></li>
<li><a class="Link1">string2</a></li>
</ul>
I simply iterate over the array and create the elements with the correct class.
What I need now is a way to assign the colors in the second array to the classes.
$.each(settings.categoryColors, function(i, val) {
$('a.Link'+i).css('background-color',val);
});
The problem is that these classes will also be added dynamically to elements of a datepicker.
So I need a way to set the classes rather than updating the elements with the classes.
In other words I need a way to create the css classes so that all elements that recieve the classes afterwards have the same colors.
I hope this makes sense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在头部生成一些 css,如下所示:
you can generate some css to the head as following :