摘要: php实现amr转成mp3的方法:1、在服务器安装ffmpeg;2、使用“ffmpeg -i”指令来转换amr为mp3格式;3、在网页端使用html5的audio标签来播放mp3文件即可。 思路 服务器安装ffmpeg 使用ffmpeg -i 指令来转换amr为mp3格式(这个到时候写在PHP代码中 阅读全文
posted @ 2024-06-23 20:13 温柔的风 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 源安装第a56爆大奖在线娱乐方式:首先需要安装yum源: 这个源安装的ffmpeg版本是3.4 yum install epel-release yum install -y https://mirrors.ustc.edu.cn/rpmfusion/free/el/rpmfusion-free-release-7 阅读全文
posted @ 2024-06-23 19:45 温柔的风 阅读(8) 评论(0) 推荐(0) 编辑
摘要: $(".layui-tab-title li").click(function(){ var my_clue_detail_tab_index = $(this).index(); sessionStorage.setItem("my_clue_detail_tab_index",my_clue_d 阅读全文
posted @ 2024-05-13 11:44 温柔的风 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 使用php类库PHP QRCode 地址:http://phpqrcode.sourceforge.net/ 下载:http://sourceforge.net/projects/phpqrcode/ 下载官网提供的类库后,只需要使用phpqrcode.php就可以生成二维码了,当然您的PHP环境必 阅读全文
posted @ 2024-01-16 10:58 温柔的风 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 比如在操作完某个事件的时候需要刷新一下页面表格,原生的js刷新效果感觉不太好,尝试静默刷新,比较ok。 上代码 parent.$("#my_customer").bootstrapTable('refresh', { silent: true //静默刷新 }); 补充: setInterval(( 阅读全文
posted @ 2024-01-06 22:16 温柔的风 阅读(115) 评论(0) 推荐(0) 编辑
摘要: max-width:160px;white-space:nowrap;overflow: hidden; text-overflow: ellipsis;-o-text-overflow: ellipsis 阅读全文
posted @ 2024-01-06 20:25 温柔的风 阅读(8) 评论(0) 推荐(0) 编辑
摘要: js报错:Uncaught SyntaxError: Unexpected identifier 'Object' (at my_customer_index?addtabs=1:1:28) 开发遇到的是用onmouseover传递对象参数时(easyui传递一行数据时),会报Sncaught Sy 阅读全文
posted @ 2024-01-06 14:55 温柔的风 阅读(394) 评论(0) 推荐(0) 编辑
摘要: if (Config.auth_is_super_admin false){ //如果不是超级管理员 table.bootstrapTable('hideColumn', 'organise_name'); //隐藏其中的 “organise_name” 列 $("li[role='menuitem 阅读全文
posted @ 2024-01-01 19:50 温柔的风 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 一、隐藏修改,删除按钮(隐藏所有行) 隐藏前 修改代码 var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'department/index/index', add_u 阅读全文
posted @ 2023-12-20 08:30 温柔的风 阅读(279) 评论(0) 推荐(0) 编辑
摘要: Option 事件jQuery 事件参数描述 onAll all.bs.table name, args 所有的事件都会触发该事件,参数包括:name:事件名,args:事件的参数。 onClickRow click-row.bs.table row, $element 当用户点击某一行的时候触发, 阅读全文
posted @ 2023-12-13 22:12 温柔的风 阅读(871) 评论(0) 推荐(0) 编辑