Сообщение от novitocnaforume
|
span удаляется со своим содержимым: span.style.display = "none";
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>ГГ</title>
<style>
.container>span {
color: red;
}
</style>
</head>
<body>
<div class="container">
Этот текст
<span>как всегда</span>
ни о чём
</div>
<button>Жми</button>
<script>
document.querySelector('button').onclick = function(){
var a = document.querySelector('.container>span');
var b = getComputedStyle(a).display;
(b == 'none') ? a.style.display = 'inline' : a.style.display = 'none';
}
</script>
</body>
</html>