1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/className.html

25 lines
585 B
HTML
Raw Permalink Normal View History

2021-05-04 16:34:10 +00:00
<html>
<body>
<a href="/home">BBB</a>
<b dir="ltr" id="aaaa" class="a b c">bbb</b>
<a dir="rtl" id="blabla" href="/">
<b>AAA</b><u dir="auto" id="ble" title="test">UUU</u>AAAAAAA
</a>
<a id="bb" dir="blalalala" href="/">BB</a>
<script>
function aa()
{
window.alert(document.getElementById('aaaa').className);
2021-05-04 16:34:10 +00:00
}
2021-06-03 11:44:57 +00:00
function bb()
{
document.getElementById('aaaa').className = 'abc';
window.alert(document.getElementsByTagName("BODY")[0].outerHTML);
2021-06-03 11:44:57 +00:00
}
2021-05-04 16:34:10 +00:00
</script>
<button onclick="return aa()">Click me!</button>
2021-06-03 11:44:57 +00:00
<button onclick="return bb()">Set className to abc</button>
2021-05-04 16:34:10 +00:00
</body>
</html>