H5是html5的简称,前端开发的语言基本都可以在这里使用,

一,点击一个按键,改变ui:

<html>

<head>


</head>

<body>

<button onclick="xxx()"></button>

<p id="p_id"></p>

<script>

function xxx(){

document.getElementById("p_id").innerHTML="你好"

}

</script>

</body>

</html>


二,添加调试的窗口:



<script src="https://cdn.bootcss.com/vConsole/3.2.0/vconsole.min.js"></script>


<script>


var vConsole = new VConsole()


</script>