1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-16 01:08:31 -04:00
elinks/test/ecmascript/hasAttribute.html

24 lines
487 B
HTML
Raw Normal View History

2021-05-07 13:03:53 -04: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').hasAttribute('rel'));
2021-05-07 13:03:53 -04:00
}
function bb()
{
window.alert(document.getElementById('ble').hasAttribute('href'));
2021-05-07 13:03:53 -04:00
}
</script>
<button onclick="return aa()">blabla rel true</button>
<button onclick="return bb()">ble href false</button>
</body>
</html>