未命名 JdR724edit icon

作者:
cup11
Fork(复制)
下载
嵌入
设置
BUG反馈
index.html
现在支持上传本地图片了!
            
            <button>+1</button>
<span></span>

<style>
  button {
    background-color: skyblue;
    border-radius: 1rem;
  }
</style>

<script>
  const el = document.querySelector("button");
  el.addEventListener('click', add);

  let counter = 0;

  function add() {
    counter = counter + 1;
    document.querySelector("span").textContent = counter;
  }
</script>
        
预览
控制台