单选题 “HTTP”的中文含义是

A、 文件传输协议
B、 超文本传输协议
C、 顶级域名网址
D、 以上都不是
下载APP答题
由4l***rd提供 分享 举报 纠错

相关试题

单选题 var btn=document.getElementById("btn"); btn.onclick=function(){ ?//跳转到八维官网,重新定向URL } 下列代码中,哪个可以实现页面跳转到八维官网网,跳转到的URL会取代当前的URL,不会在历史记录中生成新记录

A、location.replace("https://www.bwie.net/");
B、location.reload("https://www.bwie.net/");
C、location.replace="https://www.bwie.net/";
D、location.href="https://www.bwie.net/";

单选题 location对象中的哪个方法可以重新加载当前显示的页面

A、Location.href
B、Location.search
C、Location.reload()
D、Location.replace()

单选题 想要获取到地址栏中问号以后的参数,下列哪个代码可以实现

A、console.log(location.search());
B、console.log(location.href);
C、console.log(location.search);
D、console.log(location.hash);

单选题 下列选项中关于JavaScript浏览器对象中history对象的说法错误的是

A、history对象记录了用户在一个浏览器中已经访问过的URL
B、history对象的父对象是JavaScript浏览器对象的根对象window
C、应用history对象的方法可以实现IE浏览器中“前进”和“后退”按钮的功能
D、应用history对象的back()方法相当于“前进”按钮,forward()方法相当于“后退”按钮

单选题 Location对象的哪个属性可以返回完整的URL

A、console.log(location.search);
B、console.log(location.hash);
C、console.log(location.href);
D、console.log(location.host);

单选题 哪个标记标注网页中一个段落的开始

A、
B、<hr>
C、
D、<b>

单选题 <font>标记控制文字字体颜色的属性是

A、color
B、size
C、style
D、face

单选题 下面哪个代码,可以实现控制台中返回URL的查询字符串:?id=1

A、console.log(location.search);
B、console.log(location.hash);
C、console.log(location.href);
D、console.log(location.host);