获取ckeditor一个tab的输入框值

问题描述 投票:0回答:0

我在带有文本输入框的ckeditor图像对话框中添加了一个选项卡。我正在使用下面的代码。

        CKEDITOR.on( 'dialogDefinition', function( ev )
          {
              // Take the dialog name and its definition from the event
              // data.
              var dialogName = ev.data.name;
              var dialogDefinition = ev.data.definition;

              // Check if the definition is from the dialog we're
              // interested on (the "Link" dialog).
              if ( dialogName == 'image' )
              {
                dialogDefinition.dialog.resize( 700, 500 );
                // Add a new tab to the "Link" dialog.
                dialogDefinition.addContents({
                    id : 'uploadTab',
                    label : 'upload',
                    elements : [
                      {
                        type: 'text',
                        id: 'uploadField',
                        label: 'upload',     
                      }
                    ]
                });
              }
          });

现在我想在输入时从文本框中获取值。之后,我想使用 AJAX 根据文本框的值在文本框下方显示一些图像。

我该怎么做?

javascript ajax ckeditor
© www.soinside.com 2019 - 2024. All rights reserved.