python thinker 鼠标拖动调整表格宽度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python thinker 鼠标拖动调整表格宽度相关的知识,希望对你有一定的参考价值。
参考技术A 鼠标放置到边框上方拖动鼠标调整表格宽度。Python是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。Python的设计具有很强的可读性,相比其他语言经常使用英文关键字,其他语言的一些标点符号,它具有比其他语言更有特色语法结构Python是由GuidovanRossum在八十年代末和九十年代初。
在荷兰国家数学和计算机科学研究所设计出来的。
jQuery拖动调整表格列宽度-resizableColumns
实现鼠标可拖动调整表格列宽度 如图:
一、引入文件:
<script src="/js/jquery-1.8.0.min.js" type="text/javascript"></script>
<script src="/js/store.js" type="text/javascript"></script>
<script src="/js/jquery.resizableColumns.js" type="text/javascript"></script>
二、TABLE
<table id="myTable" border="1">
<thead>
<tr>
<th data-resizable-column-id="a"><input type="checkbox" /></th>
<th data-resizable-column-id="b">栏目类型 </th>
<th data-resizable-column-id="c">活动名称 </th>
<th data-resizable-column-id="d">状态 </th>
<th data-resizable-column-id="e">操作选项</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" /></td>
<td>青春日记</td>
<td>2014年度青春日记征文 </td>
<td>提交 </td>
<td>审核</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td>我和孩子的成长故事</td>
<td>成长故事 </td>
<td>通过 </td>
<td>审核</td>
</tr>
</tbody>
</table>
以上html只是作为Demo 并不是我项目中所实际使用的,并且在测试的时候 也未能实现。郁闷...
三、实现表格可拖动
<script type="text/javascript">
$(function(){
$("#myTable").resizableColumns({
store: window.store
});
})
</script>
在项目使用过程中 发现无需引入store.js <th>也无需data-resizable-column-id属性
并且$("#myTable").resizableColumns();也可实现功能
所需文件下载地址:http://download.csdn.net/detail/itmyhome/7390263
分别解压两个文件
jquery.resizableColumns.js在jquery-resizable-columns-gh-pagesdist路径下
store.js在store.js-master路径下
------------------------分割线----------------------------
如果未实现效果,可使用 colResizable 插件
参考: http://blog.itmyhome.com/2016/05/jquery-colresizable
2016-05-05
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
以上是关于python thinker 鼠标拖动调整表格宽度的主要内容,如果未能解决你的问题,请参考以下文章