乐趣区

#Javascript# Javascript基本问题总结

在 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(‘ 你点击了确定按钮!’);
}
}

退出移动版