2021-05-08 15:51:34 -04:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<a id="blabla" href="/" rel="nofollow"><b>AAA</b><u id="ble">UUU</u></a>
|
|
|
|
<b id="empty"></b>
|
|
|
|
<script>
|
|
|
|
function aa()
|
|
|
|
{
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(document.getElementById('blabla').childElementCount);
|
2021-05-08 15:51:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function bb()
|
|
|
|
{
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(document.getElementById('empty').childElementCount);
|
2021-05-08 15:51:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<button onclick="return aa()">blabla child element count</button>
|
|
|
|
<button onclick="return bb()">empty child element count</button>
|
|
|
|
</body>
|
|
|
|
</html>
|