如果css-cursor
z-index
为<= 0
,是否有可能更改特定群组(图片)的所有对象的{{1}}属性?
我不确定这是否可以在没有循环的情况下完成。
也许只使用选择器。 如果你能给我一个提示,那就太好了。
答案 0 :(得分:1)
我采用这种方法,因为它降低了“启动”处理,只有在鼠标进入图像时才应用光标。
$('img').mouseenter(
function(ev){
if($(this).css('z-index') <= 0)
{
$(this).css('cursor', 'move');
}
});
答案 1 :(得分:0)
您需要解析所有元素并测试是否满足您的要求。然后应用你的规则。
$(document).ready(function(){
$('img').each(function(){
if($(this).css('z-index') <= 0)
{
//Change CSS cursor attribute
$(this).css('cursor','move');
}
});
});