You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
651 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>focus</title>
<style>
.demo {
background-color: orange;
}
</style>
</head>
<body>
<button id="btn">显示输入框</button>
<script type="text/javascript">
const btn = document.getElementById("btn")
btn.onclick = () => {
const input = document.createElement('input')
input.className = 'demo'
input.value = 99
input.onclick = ()=>alert(1)
document.body.appendChild(input)
input.parentElement.style.backgroundColor = "skyblue"
input.focus()
}
</script>
</body>
</html>