共计 528 个字符,预计需要花费 2 分钟才能阅读完成。
在 input 框回车要触发的事件和方法
//html
<input type=”text” id=”onkeyEvent”/>
//JS
document.getElementById(‘onkeyEvent’).onkeypress = function () {
if (event.keyCode === 13) {
console.log(‘ 你点击了回车按钮!’)
}
};
HTML DOM confirm() 方法
confirm() 方法用于显示一个带有指定消息和 OK 及取消按钮的对话框。
// 语法
confirm(message)
如果用户点击确定按钮,则 confirm() 返回 true。如果点击取消按钮,则 confirm() 返回 false。在用户点击确定按钮或取消按钮把对话框关闭之前,它将阻止用户对浏览器的所有输入。在调用 confirm() 时,将暂停对 JavaScript 代码的执行,在用户作出响应之前,不会执行下一条语句。
//html
<div id=”exit”> 退出 </div>
//JS
document.getElementById(‘exit’).onclick = function () {
if (confirm(‘ 你确定要退出么?’)) {
console.log(‘ 你点击了确定按钮!’);
}
}
正文完
发表至: javascript
2019-03-29