This commit is contained in:
恍兮惚兮 2024-09-09 00:48:35 +08:00
parent d10a19b3ef
commit 57fc8292da
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
<body> <body>
<div class="header"> <div class="header">
<div class="buttons"> <div class="buttons">
<div class="buttonitem buttonsize"><a class="goodlink buttonsize" target="_blank" href="javascript:;" <div class="buttonitem buttonsize"><a class="goodlink buttonsize" href="javascript:;"
onclick="tohomeurl()" id="homepage">官方网站</a></div> onclick="tohomeurl()" id="homepage">官方网站</a></div>
<div class="buttonitem buttonsize"> <div class="buttonitem buttonsize">
<div class="dropdown buttonsize"> <div class="dropdown buttonsize">

View File

@ -165,5 +165,5 @@ window.onpopstate = function (event) {
function tohomeurl() { function tohomeurl() {
var hostname = window.location.hostname; var hostname = window.location.hostname;
window.open(window.location.protocol + '//' + hostname.substring(5)); window.open(window.location.protocol + '//' + hostname.substring(5), '_blank');
} }