2021-05-04 09:42:52 -04:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<a href="/home">BBB</a>
|
|
|
|
<b id="aaaa">bbb</b>
|
|
|
|
<a id="blabla" href="/">
|
|
|
|
<b>AAA</b><u id="ble" title="test">UUU</u>AAAAAAA
|
|
|
|
</a>
|
|
|
|
<a id="bb" href="/">BB</a>
|
|
|
|
<script>
|
|
|
|
function aa()
|
|
|
|
{
|
2021-11-09 12:44:12 -05:00
|
|
|
window.alert(document.getElementById('ble').title);
|
2021-05-04 09:42:52 -04:00
|
|
|
}
|
2021-06-03 08:05:00 -04:00
|
|
|
|
|
|
|
function bb()
|
|
|
|
{
|
|
|
|
document.getElementById('ble').title = 'BLEBLE';
|
|
|
|
aa();
|
|
|
|
}
|
|
|
|
|
2021-05-04 09:42:52 -04:00
|
|
|
</script>
|
|
|
|
<button onclick="return aa()">Click me!</button>
|
2021-06-03 08:05:00 -04:00
|
|
|
<button onclick="return bb()">Change title of element</button>
|
2021-05-04 09:42:52 -04:00
|
|
|
</body>
|
|
|
|
</html>
|