jquery easyui 合并单元格不了(colspan:2无效) 10
data-options="collapsible:true,singleSelect:true,pagination:true,rownumbers:true,fit:true">
<thead>
<tr>
<th data-options="width:150,field:'qq'">工号</th>
<th data-options="width:170,field:'ww'">姓名</th>
<th data-options="width:170,field:'ee'">邮箱</th>
<th data-options="width:170,field:'rr'">电话号码</th>
<th data-options="width:170,field:'tt'">角色</th>
<th data-options="colspan:2,width:150,field:'firstname'">操作</th>
</tr>
</thead>
<tr>
<td data-options="width:100,field:'qq'">sssss</td>
<td data-options="width:100,field:'ww'">sssss</td>
<td data-options="width:100,field:'ee'">sssss</td>
<td data-options="width:100,field:'rr'" >sssss</td>
<td data-options="width:100,field:'tt'">sssss</td>
<td data-options="width:100,field:'aa'">sssss</td>
<td data-options="width:100,field:'bb'">sssss</td>
</tr>
</table> 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏10(财富值+成长值)
<table class="easyui-datagrid" toolbar="#td"
data-options="collapsible:true,singleSelect:true,pagination:true,rownumbers:true,fit:true">
<thead>
<tr>
<th data-options="width:150,field:'qq'">工号</th>
<th data-options="width:170,field:'ww'">姓名</th>
<th data-options="width:170,field:'ee'">邮箱</th>
<th data-options="width:170,field:'rr'">电话号码</th>
<th data-options="width:170,field:'tt'">角色</th>
<th data-options="colspan:2,width:150,field:'firstname'">操作</th>
</tr>
<tr>
<td data-options="width:100,field:'qq'">sssss</td>
<td data-options="width:100,field:'ww'">sssss</td>
<td data-options="width:100,field:'ee'">sssss</td>
<td data-options="width:100,field:'rr'" >sssss</td>
<td data-options="width:100,field:'tt'">sssss</td>
<td data-options="width:100,field:'aa'">sssss</td>
<td data-options="width:100,field:'bb'">sssss</td>
</tr>
</thead>
</table>
thead是表头的意思,下面那些内容不能放在thead标签里面,但是可以放在tbody里面,但是也是无效的。。
亲,你要干嘛啊?是想把操作列做成这样吗?
<table class="easyui-datagrid" toolbar="#td"
data-options="collapsible:true,singleSelect:true,pagination:true,rownumbers:true,fit:true">
<thead>
<tr>
<th data-options="width:150,field:'qq'">工号</th>
<th data-options="width:170,field:'ww'">姓名</th>
<th data-options="width:170,field:'ee'">邮箱</th>
<th data-options="width:170,field:'rr'">电话号码</th>
<th data-options="width:170,field:'tt'">角色</th>
<th data-options="colspan:2,width:150,formatter:function(value,row,index){
return "";//在这里写
}">操作</th>
</tr>
</thead>
</table>