jquery在id上添加新的类配置?

时间:2010-05-19 15:39:41

标签: jquery

<area shape="poly" coords="63,10,64,38,89,37,91,10" class={"strokeColor:'0000ff',strokeWidth:5, fillColor:'ff0000',fillOpacity:0.6}" href="#" id="x1">

我的html中有一个imagemap,我想动态地向class属性添加一个新的配置“alwaysOn:true”。

我无法弄清楚如何添加配置选项 我怎么能用jquery做到这一点?

1 个答案:

答案 0 :(得分:0)

Look into jquery attributes

你需要一些东西。 。

$("#x1").click(function(){

var oldClass = $(this).attr("class");
$(this).attr("class", oldClass + ' alwaysOn:true');

});