原始碼
/*** author : ____′↘夏悸
* easyui kindeditor的簡單擴充套件.
* 有了這個之後,你就可以像使用easyui元件的方式使用kindeditor了
* 前提是你需要匯入kindeditor的核心js和相關樣式. 本外掛程式也需要在easyui.min和kindeditor之後匯入.
* 呵呵..沒做深入擴充套件了,簡單實現了一下功能,架子已經搭好.有需要的筒子可以在這基礎上擴充套件.
**/(function ($, k)
$.fn.kindeditor = function (options, param)
}options = options || {};
return this.each(function () else , $.fn.kindeditor.defaults, $.fn.kindeditor.parseoptions(this), options)
});}
create(this);
});}
$.fn.kindeditor.parseoptions = function (target) , $.parser.parseoptions(target, ));
};$.fn.kindeditor.methods =
};$.fn.kindeditor.defaults =
};$.parser.plugins.push("kindeditor");
})(jquery, kindeditor);
html
<
textarea
class
=
"easyui-kindeditor"
style
=
"width:100%;height:200px;visibility:hidden;"
>kindeditor
基於easyui框架的增刪改查
easyui是乙個前台框架,基於jquery介面外掛程式的集合,他可很方便的建立前台的介面,只需要通過編寫一些簡單html標記,就可以定義使用者介面。可以在jquery和h5上使用 在初次使用easyui進行開發之前,首先需要做的事是匯入easyui所需的相關jar包css樣式等,還需要準備乙個ea...
基於RBAC的Easyui樹形許可權選單的實現原理
1 使用者表 2 角色表 3 使用者角色關聯表 4 許可權表 5 角色許可權關聯表 通過五表聯查即可獲得乙個使用者的所有角色以及角色下的所有許可權。具體到ui層面,這些許可權總歸要以某種形式展現出來。一般是下拉列表或者樹形選單。這裡我們採用樹形選單來展示,所謂許可權,在easyui中可以規劃為乙個子...
基於easyui的備忘錄的實現
唉,本來昨天昨晚資料查詢今天就放假了,奈何哥們端午節回家了,他身上的重任沒有完成,自然就落到了我的肩膀上,唉,這鍋我背了,誰讓咱是兄弟不是,心裡苦說不出啊.任務是做乙個基於日期的備忘錄,效果圖如下.道理很簡單,從資料庫裡把當前使用者的記錄全部取出渲染這個表就可以了,主要是easyui的一些介面的使用...