从javascript调用css规则

时间:2013-01-03 23:45:04

标签: javascript css

大家好,我想知道是否可以通过javascript将通过css访问的.png转换为可点击的链接,通过调用css规则。

.calendar {
    background: transparent url("../cal_icon.png") no-repeat 94px 3px;
    background-repeat: no-repeat;
    margin-right: 2px;
}

这是我的css规则,我想让我的cal_icon.png可点击。 这可能吗? 请原谅我对这件事的无知。

1 个答案:

答案 0 :(得分:0)

如评论中所述,您需要为元素添加点击处理程序,而css仅用于样式

你可以看看这个小提琴,它使用jQuery(onLoad)http://jsfiddle.net/tq92z/

$('.calendar').click(function(){
    $(this).css('color','red');
})

IE有一个css表达式,可能是其他浏览器的其他东西(但我现在不记得了)

http://www.richnetapps.com/using_javascript_expressions_in_css/

但使用css进行dom操作并不常见。