主题: Firefox下右击菜单BUG
作者: yeetiger, 发布日期: 2013-09-11 00:17:36, 浏览数: 2263
操作系统: Window Xp

浏览器版本: Firefox 23.01版

KindEditor版本: @version 4.1.7 (2013-04-21)

BUG再现步骤:

 var editor;
  KindEditor.ready(function(K) {
      editor = K.create('textarea[name="content"]',
      {
          allowFileManager: true,
          filterMode: false,
          autoHeightMode: true,
          afterCreate: function() {

          }
      });

     editor.addContextmenu(
      {
          title: '控件属性',
          click: function() {
              var html = editor.selectedHtml()
              editor.hideMenu();
          },
          cond: function() {
                 return true;
           },
          width: 150
      });
      K('#btnSingleText').click(function(e) {
          editor.insertHtml('<input   type="textbox" value ="123456' />';);
      });
 

单击btnSingleText按钮,在kingeditor中增加一个输入框,右击新增加的“输入框”可以弹出右击菜单(在IE7,8,10都正常),但在Firefox却弹不出右击菜单.


期望结果:

发表新帖 发表回复