发现4.0.10版本使用旧版的代码,代码失效不能提交,请问这个代码要怎么写?旧代码:
- var txt=UE.getEditor('Content').getContentTxt();
- txt=txt.replace(/(^\s+)|(\s+$)/g, "");
- txt=txt.replace(/\s/g,"");
- if(txt.length>100)
- {
- txt=txt.substring(0,100)+"..."
- }
- if($("#Introduction").val()=="")
- {
- $("#Introduction").val(txt)
- }
复制代码