ir域名注册及托管

"一年域名"

Posted by xuhao on April 29, 2024

“省略掉非必需的字,这样读者就会注意到你想保留的。 ”

获取优惠券code:

https://www.parsdata.com/en-US/free-domain

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
}