Bing 输入框按下 Esc 不会清空内容
// ==UserScript==
// @name Bing 输入框按下 Esc 不会清空内容
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author widcardw
// @match https://*bing.com*
// ==/UserScript==
(function() {
'use strict';
/** @type{HTMLInputElement} */
const search_area = document.querySelector('#sb_form_q')
search_area.addEventListener('keydown', (e) => {
if (e.isComposing) {
if (e.code === 'Enter' || e.code === 'Escape'){
e.preventDefault()
return
}
}
})
})();