1<!DOCTYPE html>
2<html>
3<head>
4</head>
5
6<body>
7
8<button type="button" id="botonOn" onclick="FbotonOn()"> on </button>
9
10</body>
11</html>
12
13<script>
14var valor = true
15function FbotonOn() {
16 var uno = document.getElementById('botonOn');
17 valor?uno.innerText = "off":uno.innerText = "on";
18 valor=!valor
19}
20
21</script>