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 https://massgrave.dev/get | iex3、You will see the activation options, and follow onscreen instructions....
屏蔽 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;...
内容模块搜索框写法:
<form class="search-form" action="/index.php" method="get">
<input type="hidden" name="s" value="news">...
1、创建目标list_data.html专门用来写栏目分页循环标签的目标文件
{module catid=$catid order=updatetime page=1}
<div class="article-list>
<a href="{$t.url}">...
网站首页链接:{SITE_URL}
网站名称:{SITE_NAME}
模板调用:{template "文件.html"}
当前页地址:{$my_web_url}
友情链接:{php $mval = dr_site_value('yqlj');}{loop $mval $v} <a href="{$v[2]}" target="_blank">{$v[1]}</a> {/loop}...
//屏蔽右键菜单
document.oncontextmenu = function(event) {
if (window.event) {
event = window.event;
}
try {
var the = event.srcElement;
if (! ((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {...