2009年1月4日

element:方法六頁

特徵一頁 | 二頁 | 三頁 | 四頁 | 五頁
方法一頁 | 二頁 | 三頁 | 四頁 | 五頁 | 六頁 | 七頁 | 八頁
操控器一頁 | 二頁 | 成員表
element 的方法
hasAttribute()

檢查元素是否有指定的屬性名稱?有,則回傳 true;否則回傳 false。其語法是:

元素物件.hasAttribute( 屬性名稱字串 )

  • 程式用法:

    <div id='box'>
    <span id='fun' style='color:red'>好玩遊戲</span>
    <span id='small' style='color:red'>小遊戲</span>
    <span id='empty' style='color:red'></span>
    </div>
    <script type='text/javascript'>
    var so=document.getElementById('fun');
    document.write( so.hasAttribute('style') );
    </script>

  • 執行結果:

    好玩遊戲 小遊戲
    true
hasAttributeNS()

用在 XML 文件,後面再談。

hasAttributes()

檢查元素是否有任何屬性?有,則回傳 true;否則回傳 false。無參數。

  • 程式用法:

    <script type='text/javascript'>
    var so=document.getElementById('box');
    document.write( so.hasAttributes() );
    </script>

  • 執行結果:

    true

hasChildNodes()

檢查元素是否有任何子元素?有,則回傳 true;否則回傳 false。無參數。

  • 程式用法:

    <script type='text/javascript'>
    document.write( 
      document.getElementById('small').hasChildNodes() );
    document.write( '<br />'+
      document.getElementById('empty').hasChildNodes() );
    </script>

  • 執行結果:

    true
    false

removeAttribute()

移除元素上指定名稱的屬性。其語法是:

元素物件.removeAttribute( 屬性名稱字串 )

  • 程式用法:

    <span id='jolin' style='color:red'>蔡依林</span><p>
    <script type='text/javascript'>
    function removeAttributeDM()
    {
      var eo=document.getElementById("jolin");
      eo.removeAttribute( 'style' );
    }
    </script>
    <a href='javascript:removeAttributeDM()'>
    點此移除紅色</a>

  • 執行結果:

    蔡依林

    點此移除紅色

removeAttributeNS()

用在 XML 文件,後面再談。

removeAttributeNode()

移除元素上指定名稱的屬性結,會以預設屬性取代之。其語法是:

移除的屬性物件 = 元素物件.removeAttributeNode( 屬性名稱字串 )

  • 程式用法:

    <span id='wu' style='color:red'>吳宗憲</span><p>
    <script type='text/javascript'>
    function removeAttributeNodeDM()
    {
      var eo=document.getElementById("wu");
      var ao=eo.getAttributeNode('style');
      alert( eo.removeAttributeNode( ao ) );
    }
    </script>
    <a href='javascript:removeAttributeNodeDM()'>
    點此移除紅色</a>

  • 執行結果:

    吳宗憲

    點此移除紅色


©2008-2009 by ant2legs, All Rights Reserved. ant2legs 擁有其製作的文章,圖片與程式的著作權,所有權利保留。