<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <span>0</span> <script> document.querySelector('span').onclick=function(){ this.textContent++; }; </script> </body> </html>