我有一個div:在調用JavaScript函數像JQuery的
<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; });
});
我如何能實現在JavaScript的代碼,而不包括jQuery庫?
您定位了哪些瀏覽器? – Cameron 2012-04-26 05:02:59
firefox,即chrome – Kichu 2012-04-26 05:03:22
ie的哪個版本?舊版IE的事件處理需要額外的代碼。 – kinakuta 2012-04-26 05:09:28