岁月极美,在于它必然的流逝。春花,秋月,夏日,冬雪。你若盛开,清风自来。

现在是,2025-04-02 03:30:39,你好,欢迎光临!

1.打开文章内广告 后台>系统>应用管理>钩子管理>文章系统方法修改为正文插入广告 2.修改广告系统文件 /app/plugin/plugin_textad.class.php 修改...

手机站点击后显示菜单

时间:2024.03.25栏目:部分JS效果
要实现手机站点击后显示菜单的功能,通常需要结合HTML、CSS和JavaScript来编写代码。下面是一个简单的例子,展示了如何实现这一功能: HTML结构: html <!DOCTYPE html>...
要实现两个列表之间通过鼠标悬停列表名来切换显示内容的功能,你可以使用HTML、CSS和JavaScript。下面是一个简单的例子,演示了如何实现这一功能: HTML:<div class="list-switcher">...

Windows 11创建本地账户

时间:2023.12.21栏目:其他
安装Windows 11 系统时使用用户名 no@thankyou.com,密码随便填,就能跳过联网账户,创建本地账户...

系统激活

时间:2023.04.28栏目:其他
1、On Windows 8.1/10/11, right-click on the windows start menu and select PowerShell or Terminal (Not CMD). 2、Copy-paste the below code and press enterirm irm https://get.activated.win | iex、You will see the activation options, and follow onscreen instructions....

{Hash@ID} 伪静态

时间:2023.04.23栏目:ICMS
/\\w+(\\w+).html article.php?HASHID=$1...

一些JS小技巧

时间:2022.08.15栏目:部分JS效果
屏蔽 IE 浏览器 //Kill XP and IE8 (function() {     var ua = navigator.userAgent;     var res = /Windows NT (\\d+\\.\\d+)/.exec(ua);     var xpOrLower = res && JSON.parse(res[1]) < 6;...

内容模块搜索

时间:2022.07.11栏目:迅睿CMS
内容模块搜索框写法: <form class="search-form" action="/index.php" method="get"> <input type="hidden" name="s" value="news">...
text-indent遇到display:block或者float就不生效了,也就是给图片img加上display:block;或float:left;即可...

获取某个网址页面的源代码

时间:2022.04.27栏目:PHP
<?php  $pagecontent = dr_catcher_data("URL");  echo $pagecontent;  ?> ...