×
Falcon
2023-01-11 08:11
#daily tips# 分屏浏览v2ex,这个代码跟我们领导让我做一个把某个网站的内容嵌入到wp后台好像会用到,备用一下,到时不用到处找:https://www.v2ex.com/t/908164


var iframeobj = document.createElement('iframe');
iframeobj.name = 'iframe_splitview';
iframeobj.style.zIndex = 999;
iframeobj.style.left = '50%';
iframeobj.style.top = 0;
iframeobj.style.width = '50%';
iframeobj.style.height = '100%';
iframeobj.style.position = 'fixed';
document.body.style.marginRight = '50%';
document.body.appendChild(iframeobj);

document.querySelectorAll('a').forEach(function(r_node) {
r_node.target = "iframe_splitview";
});
0

暂无评论