2015-08-24 95 views
-1

如何獲得DOM元素從這個HTML代碼獲得「主體」 HTML DOM元素

<body controller="Control"> 
     <h1 bind="greeting"></h1> 
</body> 

我需要在控制檯中顯示消息:

if controller == 'Control' 
    console.log('Control Controller has been successfully initialised'); 

我不明白什麼是控制器這裏並實現DOM結合

+0

document.getElementsByTagName( '身體')[0] .getAttribute( '控制器') ? – Shilly

+0

使用Jquery,如果你可以使用它會很容易。 – bharatpatel

回答

0

在純javascript:

if (document.body.getAttribute('controller') === 'Control') { 
    console.log('Control Controller has been successfully initialised'); 
} 

如果您正在使用jQuery:

if ($('body').attr('controller') === 'Control') { 
    console.log('Control Controller has been successfully initialised'); 
} 
1

您也可以使用簡單的代碼---

if (document.body.getAttribute("controller") === "Control") 
    console.log('Control Controller has been successfully initialised');