改成w=woffsetWidth;
js获取Html元素的实际宽度高度
第一种情况就是宽高都写在样式表里,就比如#div1{width:120px;}。这中情况通过#div1stylewidth拿不到宽度,而通过#div1offsetWidth才可以获取到宽度。
第二种情况就是宽和高是写在行内中,比如style="width:120px;",这中情况通过上述2个方法都能拿到宽度。
小结,因为idoffsetWidth和idoffsetHeight无视样式写在样式表还是行内,所以我们获取元素宽和高的时候最好用这2个属性。注意如果不是写在行内style中的属性都不能通过idstyleatrr来获取。
现在的前端制作很少直接把样式写style里了,都是写在样式表里。如果你要获取的样式没有相对应的(就像#div1stylewidth对 应#div1offsetWidth),就只能分别针对不用浏览器来获取样式表的属性了,可以试着搜索“JS 获取样式属性”之类的。
在对网页进行调试的过程中,经常会用到js来获取元素的CSS样式,方法有很多很多,现在仅把我经常用的方法总结如下:
1
objstyle:这个方法只能JS只能获取写在html标签中的写在style属性中的值(style=”…”),而无法获取定义在<style
type="text/css">里面的属性。
复制代码
代码如下:
<span
style="font-family:Arial;font-size:14px;"><!DOCTYPE
html
PUBLIC
“-//W3C//DTD
XHTML
10
Transitional//EN”
“>
<html>
<head>
<script language="javascript">
function chk(){
var UserName;
var Pwd;
UserName=documentgetElementById("Bcuser")value;
Pwd=documentgetElementById("Bcpass")value;
if (UserNamelength<=0){
documentgetElementById("landout")styledisplay="none";
documentgetElementById("landover")styledisplay="block";
}
else{
documentgetElementById("landout")styledisplay="block";
documentgetElementById("landover")styledisplay="none";
}
}
function a(){
alert(Date());
}
</script>
</head>
<!--style="display: none" 登陆-->
<div class="top4" id="landout" style="display: black">
<form action="indexasp" method="post">
<table>
<tr>
<td id="td2">用户名称:</td>
<td id="td3"><input name="Bcuser" type="text" maxlength="15" id="Bcuser"/></td>
<td id="td4"><input name="Normal" type="image" src="images/dljpg" /></td>
</tr>
<tr>
<td id="td2">用户密码:</td>
<td id="td3"><input name="Bcpass" type="password" maxlength="15" id="Bcpass"/></td>
<td id="basicModal"><input name="basic" type="image" src="images/zcjpg" /></td>
</tr>
<tr>
<td> <input type="button" value="提交" onclick="chk()"></td>
</tr>
</table>
</form>
</div>
<!--style="display: none" 显示会员-->
<div class="top7" id="landover" style="display: none" >是这个意思吗</div>
</html>
采纳吧
block写成black了
,UserNamelength的length是不会小于0的,因为最小是0,所以判断条件改成UserNamelength<=0
以上就是关于js中关于获取元素属性的方法(object.style.width)全部的内容,包括:js中关于获取元素属性的方法(object.style.width)、JS使用getComputedStyle()方法获取CSS属性值、Javascript 如何获取 修改 div style中的属性等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)