Commit c70ca386 authored by rockyl's avatar rockyl

更新版本

parent 1cc3cf1f
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Input-Test</title>
<script src="//yun.duiba.com.cn/js-libs/vConsole/3.3.4/vconsole.min.js"></script>
<script>
new VConsole();
</script>
</head>
<body>
<input type="text" id="input">
<script>
const input = document.getElementById('input')
input.addEventListener('input', function () {
console.log(input.value)
});
console.log('ready!')
</script>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment