11 2013 档案

摘要:/// /// 汉字转换为Unicode编码 /// /// 要编码的汉字字符串 /// Unicode编码的的字符串 public static string ToUnicode(string str) { byte[] bts = Encoding.Unicode.GetBytes(str); string r = ""; for (int i = 0; i /// 将Unicode编码转换为汉字字符串 //... 阅读全文
posted @ 2013-11-28 13:30 小川丶 阅读(368) 评论(0) 推荐(0)
摘要:createEditor("newsEditer"); //创建一个editer//editer 最大化CKEDITOR.instances["newsEditer"].on('instanceReady', function (event) { var editor = event.editor; setTimeout(function () { // Delay bit more if editor is still not ready. if (!editor.element) { setTimeout(arguments.call 阅读全文
posted @ 2013-11-27 10:06 小川丶 阅读(834) 评论(0) 推荐(0)