OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <script> | |
5 function changeText(id, newText) { | |
6 var node = document.getElementById(id); | |
7 node.childNodes[0].nodeValue = newText; | |
8 } | |
9 </script> | |
10 | |
11 <meta name='viewport' content='width=device-width'/> | |
12 <style> | |
13 body { | |
14 margin: 0px; | |
15 } | |
16 </style> | |
17 </head> | |
18 | |
19 <body> | |
20 <button type="button" id="tap_button" onclick="changeText('tap_button', 'updat edValue')" style="width:100px;height:100px">oldValue</button> | |
21 </body> | |
22 | |
23 </html> | |
24 | |
OLD | NEW |