jQuery EasyUI 숙련
3026 단어 jquery easyui
<div class="sortable">
<div class="box span12">
<div class="box-header well" >
<h2> </h2>
</div>
<div class="box-content">
<table class="table table-bordered table-striped">
<thead>
<tr>
<td>Item ID</td>
<td>ProductId</td>
<td>ListPrice</td>
<td>UnitCost</td>
<td>Atrr1</td>
<td>status</td>
</tr>
</thead>
<c:forEach items="${productList}" var="product">
<tr>
<td>${product.itemid }</td> <td>${product.productid }</td> <td>${product.listprice }</td>
<td>${product.unitcost }</td> <td>${product.attr1 }</td> <td>${product.status}</td>
</tr>
</c:forEach>
</table>
${pageHtml }
</div>
</div>
</div>
이 코드는 모두가 잘 알고 있다고 믿습니다. 그러면 jQuery EasyUI는 다음과 같은 코드만 있으면 됩니다.
<table class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:250px"
data-options="singleSelect:true,collapsible:true,url:'datagrid_data1.json',method:'get'">
<thead>
<tr>
<th data-options="field:'itemid',width:80">Item ID</th>
<th data-options="field:'productid',width:100">ProductId</th>
<th data-options="field:'listprice',width:80,align:'right'">List Price</th>
<th data-options="field:'unitcost',width:80,align:'right'">Unit Cost</th>
<th data-options="field:'attr1',width:250">Attribute</th>
<th data-options="field:'status',width:60,align:'center'">Status</th>
</tr>
</thead>
</table>
많이 깔끔해졌죠?또한 jQuery EasyUI는 데이터grid 열 편집, 줄 편집 등 다양한 기능을 제공하는데 가장 중요한 것은 원본 코드(홈페이지:http://www.jeasyui.com/index.php), 자주 사용하는 jquery 문법을 간단하게 파악하면 대부분의 웹 지지 관리 시스템의 프론트 데스크톱 인터페이스를 해결할 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JQuery EasyUI DataGrid 동적 병합 셀js 호출 코드 html js...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.