>  기사  >  웹 프론트엔드  >  document.getElementById("")赋值问题_html/css_WEB-ITnose

document.getElementById("")赋值问题_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:42:282906검색

 

 
<script> <br /> function cc() <br /> { <br /> var cf=window.screen.width; <br /> alert(cf) <br /> <br /> if(cf<=1920) <br /> { <br /> cf=-(1920-cf)/2 <br /> } <br /> else if(cf>1920) <br /> { <br /> cf=(cf-1920)/2 <br /> } <br /> document.getElementById("m1").style.marginLeft=cf; <br /> alert(cf) <br /> } <br /> </script>

 
 

document.getElementById(
 

 


上面可以给M1进行左移赋值:document.getElementById("m1").style.marginLeft=cf;
但在第一行加这行后:nbsp;html>
M1就赋值失败,请问一般HTML文件都有nbsp;html>,如何处理?


回复讨论(解决方案)

document.getElementById("m1").style.marginLeft=cf +"px";

document.getElementById("m1").style.marginLeft=cf +"px";


可以了,多谢!

改为


为何用document.getElementsByTagName("m1").style.marginLeft=cf+"px";赋值不了?

6


document.getElementById("m1").style.marginLeft=cf +"px";


可以了,多谢!

改为


为何用document.getElementsByTagName("m1").style.marginLeft=cf+"px";赋值不了?
getElementsByTagName()是用标签名来选择

用class是
document.getElementsByClassName("m1")[0].style.marginLeft=cf+"px";
或者
document.querySelector(".m1").style.marginLeft=cf+"px";

受教了,多谢!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.