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

24 lines
490 B
HTML
Raw Permalink Normal View History

2021-09-08 08:41:36 +00:00
<html>
<body>
<a href="/home">BBB</a>
<b id="aaaa">bbb</b>
<a id="blabla" href="/" rel="nofollow">
<b>AAA</b><u id="ble">UUU</u>AAAAAAA
</a>
<a id="bb" href="/">BB</a>
<script>
function aa()
{
window.alert(document.getElementById('blabla').getAttribute('rel'));
2021-09-08 08:41:36 +00:00
}
function bb()
{
window.alert(document.getElementById('ble').getAttribute('href'));
2021-09-08 08:41:36 +00:00
}
</script>
<button onclick="return aa()">blabla rel nofollow</button>
<button onclick="return bb()">ble href null</button>
</body>
</html>