JavaScript DHTML/Node Operation/innerText

Материал из Web эксперт
Перейти к: навигация, поиск

"innerText" Example

   <source lang="html4strict">
   

<html> <body>

Sample Text inside a p element

<button onclick="alert(myP.innerHTML);">InnerHTML</button> <button onclick="alert(myP.innerText);">InnerText</button> </body> </html>


     </source>