jQuery – document页面处理
1 2 3 4 5 6 7 |
<script src="/static/js/jquery.min.js"></script> <script> //刷新 document.location.reload(); //跳转 window.location.href="http://www.baidu.com" </script>> |
1 2 3 4 5 6 7 |
<script src="/static/js/jquery.min.js"></script> <script> //刷新 document.location.reload(); //跳转 window.location.href="http://www.baidu.com" </script>> |
事件 函数 鼠标点击事件 click() 内容改变事件 change() 鼠标移动 hover() 按下按键 阅读更多jQuery – 添加事件[…]
函数 作用 text() 设置或返回所选元素的文本内容 html() 设置或返回所选元素的内容(包括 HTML阅读更多jQuery – 获取和设置html中的元素内容[…]
jQuery基础 jQuery – document页面处理 jQuery – 获取和设置html中的元素内容阅读更多Web前端开发 – jQuery的使用[…]
函数 作用 df.sample() 打乱数据 df.replace() 替换数据 df[‘id&#阅读更多Pandas – 数据打乱、修改与删除[…]
函数 作用 df.value_counts() 统计数据出现的次数或者频率 df.sort_values() 阅读更多Pandas – 统计特征计算[…]
函数 作用 pd.merge 数据合并(类似于SQL中的join操作) pd.concat 数据连接 [cra阅读更多Pandas – 数据合并与连接[…]
查询数据 Pandas实现按条件筛选与查询,较为常用的办法为df[df[colunm] boolean e阅读更多Pandas – 筛选与查询[…]
用到的函数 函数 作用 pd.read_csv(path, sep, header) 从csv文件中读取 pd阅读更多Pandas – 生成、读取、显示和保存数据[…]
Pandas基础 Pandas – 生成、读取、显示和保存数据 Pandas – 筛选与查询 Pandas –阅读更多Python数据处理 – Pandas库的使用[…]