``` window.jQuery || document .write("<script src='/public/static/zfcms/style/jquery-1.8.3/jquery-1.8.3.min.js'>" + "<"+"/script>"); setTimeout(() => { if (typeof jQuery !== 'undefined') { console.log('jq已引用') } else { console.log('页面jQuery未引用,无法进行相关操作') } },100) ```
Where possible begins
希望你喜欢这里。有问题,请提问,或搜索现有帖子。
真诚、友善、团结、专业,共建你我引以为荣之社区。《常见问题解答》

小程序rich-text组件如何改变内部img图片样式的方法
开发调优
小程序rich-text组件如何改变内部img图片样式的方法 页面使用 ``` <rich-text nodes="{{content}}"></rich-text> ``` js获取后进行处理 ``` content = content.replace(/<p([\s\w"=\/\.:;]+)((?:(style="[^"]+")))/ig, '<p') .replace(/<p>/ig, '<p style="font-size: 15px; line-height: 25px;">') .replace(/<img([\s\w"-=\/\.:;]+)((?:(height="[^"]+")))/ig, '<img$1') .replace(/<img([\s\w"-=\/\.:;]+)((?:(width="[^"]+")))/ig, '<img$1') .replace(/<img([\s\w"-=\/\.:;]+)((?:(style="[^"]+")))/ig, '<img$1') .replace(/<img([\s\w"-=\/\.:;]
312

分享-只有一个html文件的 ChatGPT 聊天网页
讨论专区
github地址是 https://github.com/lin2025/gpt3.5 真的只有一个文件 用的是vue 
319

分享给gpt提示词-用于截图生成前端代码
讨论专区
提示词如下 ``` You are an expert Tailwind developer You take screenshots of a reference web page from the user, and then build single page apps using Tailwind, HTML and JS. You might also be given a screenshot of a web page that you have already built, and asked to update it to look more like the reference image. - Make sure the app looks exactly like the screenshot. - Pay close attention to background color, text color, font size, font family, padding, margin, border, etc. Match the
319

mysql格式化时间戳为时间
开发调优
DATE_FORMAT(FROM_UNIXTIME(ctime), "%Y-%m-%d %H:%i:%s") AS push_time ``` Db::name('aaaaa')->field('title,version,DATE_FORMAT(FROM_UNIXTIME(ctime), "%Y-%m-%d") AS push_time')->where([['post_id','=',$res['id']],['file','<>',''],['status','=',1]])->order('id desc')->limit(10)->select(); ```
284

ZFCMS插件中的使用记录240308
子枫cmsX2
插件中的静态默认路径 : {$plug_static} 保存当前的链接: session('zf_login_tap_url',request()->url()); 获取插件保存在数据库中数据: $plugin_data = $this->Yun->get_plugin_config_db('addons','','zf_store_softclientv2'); 获取模板保存在数据库中数据: $theme_data = $this->Yun->get_plugin_config_db($this->zf_tpl_suffix,'theme','');
318

子枫CMS内容模板使用form_time
子枫cmsX2
time_type可使用类型: year 年选择器,只提供年列表选择 month 年月选择器,只提供年、月选择 date 日期选择器(默认),可选择:年、月、日选择 time 时间选择器,只提供时、分、秒选择 datetime 日期时间选择器,可选择:年月日、时分秒 
290

子枫CMS 内容模型使用select
子枫cmsX2
如果使用 ['上海','江苏','南京']这种形式的数据时,可以如下设置 
289

389

PHP 根据日期获取节气
开发调优
有两种方式 第一种(不准确,会有误差) ``` function getJieQi($_year,$month,$day) { $year = substr($_year,-2)+0; $coefficient = array( array(5.4055,2019,-1),//小寒 array(20.12,2082,1),//大寒 array(3.87),//立春 array(18.74,2026,-1),//雨水 array(5.63),//惊蛰 array(20.646,2084,1),//春分 array(4.81),//清明 array(20.1),//谷雨 array(5.52,1911,1),//立夏
327

子枫CMS系统升级240302
子枫cmsX2
``` - [x] 重写 authentication_sys.html页面 - [x] 删除一些不必要的静态文件 ```
325

424

子枫CMS系统升级240301
子枫cmsX2
``` 03/01 (主要是为了减少代码的大小,减少不必要的代码) - [x] 增加一个在线引用样式包功能,如果没有本地没有则引用 (未完成) common.php config/index.html - [x] 后台下载对应的样式包 config/tool.html config.php - [x] 修复meta_url_route方法的中url等于空的bug common.php - [x] 由于多语言原因修改如下函数 route_home meta_url_route - [x] 更新/public/static/zfcms/style 下的静态文件,把大的文件删除,后续可在后台下载(节省12.23MB) 删除autosize wangEditor tinymce515 webuploader meditor - [x] 删除/public/static/zfcms/system 部分文件 空间节省5.34MB - [x] 删除/public/static/zfcms/lay
295