jQuery(".imageright").function();
if ( jQuery(".bloc_3").is(":visible") ) {
jQuery(".imageright").hide();
};
});
为什么此代码注释有效?
答案 0 :(得分:1)
jQuery(".imageright").click( function(){
if ( jQuery(".bloc_3").is(":visible") ) {
jQuery(".imageright").hide();
}
});
答案 1 :(得分:0)
这里有重大的语法错误是那些固定的
jQuery(".imageright").checkVisible=function(){
if ( jQuery(".bloc_3").is(":visible") ) {
jQuery(".imageright").hide();
}
};
然而,运行附加到对象的函数很难,只需将其分配给不同的变量并像这样运行
Var checkVisible=function(){
if ( jQuery(".bloc_3").is(":visible") ) {
jQuery(".imageright").hide();
}
};
checkVisible();