如果页面上存在DIV,则将CSS添加到其他DIV
我对jQuery非常陌生,但我已经掌握了基础知识......至少我认为我是这样做的? 我只是不确定如何把它们放在一起让他们实际工作。
例:
IF(ID为#dynamicChat的div)出现在页面上。 然后(div类与.prdSection)高度是25px。 否则什么也不做
我到目前为止:
$('#dynamicChat'){
$('.prdSection').css('height', '25px');
}
我不认为我很遥远......说我可能是:)任何帮助将是伟大的!
*侧面问题 - 如果我指的是页面上的Div,我会怎么称呼它? 元素?
谢谢 :)
if ($('#dynamicChat').length > 0) {
$('.prdSection').css('height', '25px');
}
你不需要“> 0”,你可以简单地写:
if ( $('#myElement').length ) {
// it exists
}
if ( $('#dynamicChat').length ) {
$('.prdSection').css('height', '25px');
}
不需要jQuery来检查该元素是否存在:
if(document.getElementById('dynamicChat')){
$('.prdSection').css('height', '25px');
}
链接地址: http://www.djcxy.com/p/83701.html