我制作了一个 javascript 生成的表单,可以生成按钮和 1 input type='text
。但是,为了删除您输入的内容,您需要突出显示文本并在其上输入,而不是简单的 BACKSPACE 键。这是我的一些代码:
var imTime=document.createElement('button');
var imDaTime=document.createElement('input');
imTime.setAttribute('onclick','xSetDaTime();');
imDaTime.setAttribute('type','text');
imDaTime.setAttribute('id','daT');
imTime.innerHTML='Set time (in seconds) : ';
document.body.insertBefore(imDaTime,document.body.firstChild);
document.body.insertBefore(imTime,document.body.firstChild);
function xSetDaTime() {
lingDRILL.startTime=(new Date()).getTime()-((document.getElementById('daT').value)*1000);
}
window.scrollTo(0, 0);
一切正常,除了退格/删除键。