$('.inputw').on('keydown',?function(event)?{
var?evt?=?event?||?window.event;
if(this.value?==?""?&&?evt.keyCode?==?8)?{
//?如果為空且按下退回鍵
$(this).prev('input').focus();
}
});
下面是jq代碼,怎么寫成原生js代碼?
erutdioup8556
2016-09-19 15:52:11