gpt4 book ai didi

javascript - ckeditor 插件对话框选择从所选的获取描述

转载 作者:数据小太阳 更新时间:2023-10-29 06:12:22 25 4
gpt4 key购买 nike

我正在为 CKEDITOR 开发一个占位符插件,它基本上已经完成了。我遇到的问题是,我试图从对话框中的 select 获取值和 description,但我只获取了值。包含描述和值的数组如下所示

-->项目:[['description1', 'value1'], ['description2', 'value2']] <--

return -> contents -> elements with ID dropdown 我有 setup提交功能。在这些函数中,我需要像从选择选项中获取名称一样获取描述。

真的需要这方面的帮助,在此先感谢

示例 -->

<select>
<option value="value1">description1</option>
<option value="value2">description2</option>
</select>

例子<--

(function () {

function placeholderDialog(editor, isEdit) {

var lang = editor.lang.phlink,
generalLabel = editor.lang.common.generalTab;

return {
title: lang.title,
minWidth: 300,
minHeight: 80,
contents: [
{
id: 'info',
label: generalLabel,
title: generalLabel,
elements: [
{
id: 'dropdown'
, type: 'select'
, label: lang.chooseVal
, 'default': 'Detta är default'
, items: [['description1', 'value1'], ['description2', 'value2']]
, setup: function (data) {
// need the description
this.setValue(data.title);
}
, commit: function (data) {
// need the description
data.title = this.getValue();
}
},
{
id: 'text',
type: 'text',
style: 'width: 100%;',
label: lang.text,
'default': '',
required: true,
validate: CKEDITOR.dialog.validate.notEmpty(lang.textMissing),
setup: function (data) {
this.setValue(data.text);
},
commit: function (data) {
data.text = this.getValue();
}
}
]
}
],
onShow: function () {
var data = { tag: 'link', content: "detta är innehåll", title: "Länk till svar", text: "detta är text" };
if (isEdit) {
this._element = CKEDITOR.plugins.phlink.getSelectedPlaceHolder(editor);
data.title = this._element.getAttribute('title');
data.text = this._element.getText();
data.tag = this._element.getAttribute('data-jztag');
}

this.setupContent(data);
},
onOk: function () {
var data = { tag: 'link', content: null, title: null, text: null };

this.commitContent(data);

CKEDITOR.plugins.phlink.createPlaceholder(editor, this._element, data);

delete this._element;
}
};
}

CKEDITOR.dialog.add('createplaceholder', function (editor) {
return placeholderDialog(editor);
});
CKEDITOR.dialog.add('editplaceholder', function (editor) {
return placeholderDialog(editor, 1);
});
})();

最佳答案

使用以下命令获取选项的文本:

var input = this.getInputElement().$;
console.log( input.options[ input.selectedIndex ].text );
>> "description1"

关于javascript - ckeditor 插件对话框选择从所选的获取描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15481040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com