我用Safari编写了以下代码测试:
$(thisinput).children("div").attr ("contenteditable","true") //div editierbar machen
.focus(); //focus setzen
$(thisinput).children("div[contentEditable!=false]").focusout(function(){
$('#log').append("focusout");});
我的问题:使用SAFARI也会在“focusin”上发送事件!为什么?有没有更好的办法? 谢谢 迈克尔