我得到了这样的css规则:
#imgwrapper {display: block;position: relative;width:auto;height:auto;}
所以我得到了一个超链接,当它被点击时,它应该像#imgwrap这样添加一个css规则:
#imgtarget, #imgwrapper img {cursor:crosshair;}
我应该怎么做?
我试过jquery .css()api,但它没有工作..
答案 0 :(得分:9)
$('a.whatever').click(function() {
$('#imgtarget').css('cursor' , 'crosshair');
$('#imgwrapper img').css('cursor', 'crosshair');
});
答案 1 :(得分:2)
以下代码应该有效。
$('#imgwrapper').css('cursor','crosshair')