4
我寫了自己的插件,它會生成一個簡單的鏈接。 奇怪的是我無法編輯「href」屬性。其他屬性可以編輯。CKeditor自己的插件與對話框
此元素不起作用:
{
type: 'text',
id: 'url',
label: 'URL',
commit: function(element) {
element.setAttribute('href', this.getValue());
},
setup: function(element) {
this.setValue(element.getAttribute('href'));
}
}
當我創建一個鏈接,href屬性被寫入。當我編輯鏈接「href」屬性沒有改變。奇怪!
當我改變上面的代碼和示例的「href-S」改寫屬性的名稱:
{
type: 'text',
id: 'url',
label: 'URL',
commit: function(element) {
element.setAttribute('href-s', this.getValue());
},
setup: function(element) {
this.setValue(element.getAttribute('href-s'));
}
}
創建和編輯屬性完美的作品。
你不知道什麼問題?
謝謝。
太棒了,完美的作品。 – kevas 2015-02-10 10:55:27
今天戰鬥完全相同的問題。多謝! – wwwmarty 2015-02-10 20:39:48