JAVASCRIPT中document.getElementById使用方法

來源:互聯網
上載者:User

改變 HTML 屬性

如需改變 HTML 元素的屬性,請使用這個文法:

document.getElementById(id).attribute=new value
本例改變了  元素的 src 屬性:


<img id="image" src="smiley.gif" alt="" />
 
 
<script type="text/javascript">
document.getElementById("image").src="landscape.jpg";
</script>
改變 HTML 樣式

如需改變 HTML 元素的樣式,請使用這個文法:


document.getElementById(id).style.property=new style
下面的例子會改變

元素的樣式:


Hello World!
 
<script type="text/javascript">
document.getElementById("p2").style.color="blue";
</script>

有人看到會說使用jquery $貨幣符號來代替document.getElementById是多好啊,下面我們也來看看

<input id=a type=text />

$('#a').val()

當然如果不想使用jquery外掛程式包可以自訂$,如下

JavaScript可以定義$符號函數,簡寫或書寫相容性更好的代碼。

代碼如下:

function $(id){return document.getElementById(id); 

上面的關於新版本的瀏覽器都是沒有成績的,假如運用陳舊的瀏覽器,可以運用上面的函數
代碼如下:
 
function $(objectId) {
if(document.getElementById && document.getElementById(objectId)) {
// W3C DOM
return document.getElementById(objectId);
}
else if (document.all && document.all(objectId)) {
// MSIE 4 DOM
return document.all(objectId);
}
else if (document.layers && document.layers[objectId]) {
// NN 4 DOM.. note: this won't find nested layers
return document.layers[objectId];
}
else {
return false;
}
}

document.getElementById 架構中元素操作

[window.]parent.document.getElementById('button') //尋找父頁面中id為button的對象

parent.document.getElementById("frame").style.height-----即取得頁面中的id名字為“frame”的元素,取得它的顯示高度

function init(){
parent.document.getElementById("frame").style.height=document.body.scrollHeight;
}

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onmouseover="parent.hideparent();" onload="init()">

補充:

從iframe中尋找父頁面中對象的方法:
  1.js
   
    [window.]parent //尋找父頁面的window對象 
    [window.]parent.document //尋找父頁面的document對象 
    [window.]parent.document.body //尋找父頁面的body對象 
    [window.]parent.document.getElementById('button') //尋找父頁面中id為button的對象 

  2.jquery
    $([window.]parent) //尋找父頁面的window對象 
    $([window.]parent.document) //尋找父頁面的document對象 
    $([window.]parent.document.body) //尋找父頁面的body對象 
    $([window.]parent.document.body).find('#button') //尋找父頁面中id為button的對象 
 
 
點擊事件子頁面控制父頁面元素。
$('.demo_close').click(function () {
            $('#iframeIE', window.parent.document).hide();
  });  
 
 

從父頁面中尋找iframe子頁面中對象的方法:
 1. JS代碼:
  document.getElementById('iframe').contentWindow //尋找iframe載入的頁面的window對象 
  document.getElementById('iframe').contentWindow.document //尋找iframe載入的頁面的document對象 
  document.getElementById('iframe').contentWindow.document.body //尋找iframe載入的頁面的body對象 
  document.getElementById('iframe').contentWindow.document.getElementById('icontent') //尋找iframe載入的頁面的id為icontent的對象
 
 2.jQuery:
    $iframe.contents() //尋找iframe載入的頁面的document對象 
    $iframe.contents().find('body') //尋找iframe載入的頁面的body對象 
    $iframe.contents().find('body').find('#icontent') //尋找iframe載入的頁面的id為icontent的對象

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.