我有一个 div:
<div id="test" style="width:auto; height:auto;">
</div>
还有一个功能:
$(function() {
$("#test").attr("contentEditable", "true");
$("#test")
.attr("tabindex", "0")
.keydown(function(){ alert(1); return false; })
.mousemove(function(){ alert(2); return false; });
});
如何在不包含 JQuery 库的情况下在 JavaScript 中实现此代码?