這(zhè)是因爲3.4版本以前編輯器默認開啓了(le)過濾模式(filterMode:true)。當filterMode爲true時(shí),編輯器會根據htmlTags設定自動過濾HTML代碼,主要是爲了(le)生成幹淨的(de)代碼。如果想保留所有HTML,請将filterMode設置成false。如果想保留特定HTML,請将filterMode設置成true後,配置htmlTags屬性。從3.4版本開始默認關閉過濾模式,所以要過濾HTML,需要将filterMode設置成true。
KE.show({ id : 'textarea_id', filterMode : true // true:開啓過濾模式, false:關閉過濾模式});