侧边栏壁纸
  • 累计撰写 26 篇文章
  • 累计创建 26 个标签
  • 累计收到 5 条评论

目 录CONTENT

文章目录

ir域名 托管到cloudflare

Administrator
2024-04-28 / 0 评论 / 0 点赞 / 669 阅读 / 0 字

.ir域名 托管到cloudflare
如果修改NS服务器时提示Name server is not correct,你可以在修改ns服务器的页面,打开 f12,在Console复制以下代码,然后回车,然后再去提交。

function WebForm_DoPostBackWithOptions(options) {
var validationResult = true;

if (validationResult) {
    if ((typeof(options.actionUrl) != "undefined") && (options.actionUrl != null) && (options.actionUrl.length > 0)) {
        theForm.action = options.actionUrl;
    }
    if (options.trackFocus) {
        var lastFocus = theForm.elements["__LASTFOCUS"];
        if ((typeof(lastFocus) != "undefined") && (lastFocus != null)) {
            if (typeof(document.activeElement) == "undefined") {
                lastFocus.value = options.eventTarget;
            }
            else {
                var active = document.activeElement;
                if ((typeof(active) != "undefined") && (active != null)) {
                    if ((typeof(active.id) != "undefined") && (active.id != null) && (active.id.length > 0)) {
                        lastFocus.value = active.id;
                    }
                    else if (typeof(active.name) != "undefined") {
                        lastFocus.value = active.name;
                    }
                }
            }
        }
    }
}
if (options.clientSubmit) {
    __doPostBack(options.eventTarget, options.eventArgument);
}

}

0

评论区