2、设置或获取整个URL为字符串。
3、设置或获取与URL关联的端口号码。
4,设置或获取URL的协议部分。
5,设置或获取href属性中在井号“#”后面的分段。
6,设置或获取location或URL的hostname和port号码。
7,设置或获取href属性中跟在问号后面的部分。
8、获取变量的值(截取等号后面的部分)。
9、用来得到当前网页的域名。
、link是引入一个外部的文件,后缀名为.css的样式文件,比如style.css,例子:<link rel="stylesheet" href="这里是文件路径/文件"> <link rel="stylesheet" href="css/style.css"> 推荐使用2、style标签放在head里面,css是写在页面上的, 3、还有一种是写在html里面的,比如:<div style="color:red"></div><!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><link rel="stylesheet" href="css/style.css"> <!-- link --><style> div { color: red}</style></head><body></body></html>// link设置外网的css文件资源即可<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Cache-control" content="no-cache" />
<meta name='format-detection' content='telephone=no' />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>xxx</title>
<link rel="stylesheet" type="text/css" href="这里写外网服务的路径/css/123.css" />
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)