我有以下代码(见下文),使字段集中在插入的文本输入上.但这在Firefox中不起作用.所以我无法在Firefox中输入任何文字.
$('<input/>').attr({ type: 'text',id: 'test',name: 'test' }).appendTo('#form');
这有什么问题吗?
提前致谢!
–
更正我的问题
我发现问题是由问题引起的
$(选择).sortable().disableSelection()
我现在唯一的决议是不打电话
// disableSelection()
欢迎任何其他建议.
解决方法
尝试着眼
$('<input/>').attr({ type: 'text',name: 'test'}).appendTo('#form'); $('#test').focus(function(e) { alert('Focus'); });