1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-30 01:55:30 +00:00
elinks/test/ecmascript/innerHTML.html

26 lines
585 B
HTML
Raw Normal View History

2021-06-03 09:59:15 +00:00
<html>
<body>
<a href="/home">BBB</a>
<b id="aaaa">bbb</b>
<a id="blabla" href="/">
<b>AAA</b><u id="ble">UUU</u>AAAAAAA
</a>
<a id="bb" href="/">BB</a>
<script>
function aa()
{
window.alert(document.getElementById('blabla').innerHTML);
window.alert(document.getElementById('ble').innerHTML);
2021-06-03 09:59:15 +00:00
}
function bb()
{
2021-06-06 13:23:21 +00:00
document.getElementById('blabla').innerHTML = '<u>test</u><b>OK</b>';
// window.alert(document.getElementsByTagName("HTML")[0].outerHTML);
2021-06-03 09:59:15 +00:00
}
</script>
<button onclick="return aa()">Click me!</button>
<button onclick="return bb()">innerText test</button>
</body>
</html>