js判断一个DIV的高度如果超过则另一个DIV就显示特定内容
用JS判断如果1div的高度超过200,则2div里面显示“000”.如果1div高度没超过200,那么2div里面就不显示“000”...
用JS判断 如果1div的高度超过200,则2div里面显示“000”.如果1div高度没超过200,那么2div里面就不显示“000”
展开
1个回答
展开全部
ctl.onpropertychange = function(e){
if(e.propertyName=='height'){
if(e.srcElement.height > 200){
//代码
}
}
}
if(e.propertyName=='height'){
if(e.srcElement.height > 200){
//代码
}
}
}
追问
可以写的详细点吗 谢谢
追答
docment.getElementById('div1').onpropertychange = function(e){
e = window.event || e;
if(e.propertyName=='height'){
docment.getElementById('div2').innerText = '';
if(e.srcElement.height > 200){
docment.getElementById('div2').innerText='000';
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询