WMLScript getHost() 函数

getHost() 函数返回在 url 参数中规定的主机。

语法

n = URL.getHost(url)
成分 描述
n 从函数返回的字符串。
url 一个字符串。

例子

var a = URL.getHost("http://www.3wschool.com.cn/wml");
var b = URL.getHost("/wml/functions");

结果

a = "www.3wschool.com.cn"
b = ""