0

我想在我的 jQuery 中为我在页面上使用的图表设置一定的宽度。我已经使用类在我的样式表中设置了宽度.sparkline-width。我如何在我的 jQuery 中调用这个类?

HTML

<div id="sparkline-1" class="sparkline sparkline-width"></div>

jQuery

$("#sparkline-1, #sparkline-3, #sparkline-5").sparkline([5,6,7,9,9,5,3,2,2,4,6,7], {
   type: 'line',
   spotColor: '#990000',
   minSpotColor: '#990000',
   maxSpotColor: '#990000',
   width: 
   height: '25px',
});
4

1 回答 1

0

您可以使用width()

$('.sparkline-width').width("Your width here");

根据您的评论,您可以向元素添加新类:

$("p").addClass("newClass");

然后在你的css中引用它:

.newClass {
    /* Your styles here */
}
于 2013-05-06T10:24:45.940 回答