<区域对象
例
返回的URL在图像映射中的特定区域的用户名部分:
var x =
document.getElementById("venus").username;
x的结果将是:
johnsmith
试一试»
定义和用法
用户名属性设置或返回的用户名部分href属性值。
该href属性指定的区域中的链接的目标。
在URL,用户名部分是由用户输入的用户名。 据该协议后,密码部分之前指定。
实施例: 20(JohnSmith对%图20是%第二十条%20username%20于是%20smith123%图20是%第二十条%20passwordis%第二十条%20password / index.html中“> HTTPS:// JohnSmith对 :[email protected] (johnsmith is the username and smith123 is the password )。
提示:使用密码属性来设置或返回的密码部分href属性值。
浏览器支持
属性 | | | | | |
---|
username | 是 | 不支持 | 是 | 不支持 | 是 |
句法
返回用户名属性:
设置用户名属性:
areaObject .username= 属性值
值 | 描述 |
---|
username | 指定URL的用户名部分 |
技术细节
返回值: | 一个String,表示URL的用户名部分 |
---|
更多示例
例
更改图像映射的特定区域的用户名部分:
document.getElementById("venus").username = "newUsername";
试一试» Area对象