Introduction to jQuery EasyUI
jQuery EasyUI is a framework based on jQuery that integrates various user interface plugins.
What is jQuery EasyUI
The jQuery EasyUI framework provides everything needed to create web pages, helping you build sites easily.
- easyui is a framework based on jQuery that integrates various user interface plugins.
- easyui offers the necessary features to create modern, interactive JavaScript applications.
- With easyui, you don't need to write much JavaScript code; typically, you only need to use some HTML markup to define the user interface.
- A complete framework for HTML web pages.
- easyui saves development time and scale.
- easyui is very simple yet extremely powerful.
Download jQuery EasyUI
You can download the desired version of jQuery EasyUI from http://www.jeasyui.com/download/index.php.
Easy Use of jQuery and HTML5
jQuery EasyUI provides easy-to-use components that enable web developers to quickly build program pages on the popular jQuery core and HTML5. These features make your application suitable for today's web. There are two methods to declare UI components:
Directly declare the component in HTML.
<div class="easyui-dialog" style="width:400px;height:200px" data-options="title:'My Dialog',collapsible:true,iconCls:'icon-ok',onOpen:function(){}"> dialog content. </div>
Write JavaScript code to create the component.
<input id="cc" style="width:200px" />
$('#cc').combobox({
url: ...,
required: true,
valueField: 'id',
textField: 'text'
});