2021-05-04 12:34:10 -04: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()
|
|
|
|
{
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(document.getElementById('aaaa').className);
|
2021-05-04 12:34:10 -04:00
|
|
|
}
|
2021-06-03 07:44:57 -04:00
|
|
|
|
|
|
|
function bb()
|
|
|
|
{
|
|
|
|
document.getElementById('aaaa').className = 'abc';
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(document.getElementsByTagName("BODY")[0].outerHTML);
|
2021-06-03 07:44:57 -04:00
|
|
|
}
|
2021-05-04 12:34:10 -04:00
|
|
|
</script>
|
|
|
|
<button onclick="return aa()">Click me!</button>
|
2021-06-03 07:44:57 -04:00
|
|
|
<button onclick="return bb()">Set className to abc</button>
|
2021-05-04 12:34:10 -04:00
|
|
|
</body>
|
|
|
|
</html>
|