自考笔果题库
笔果题库
历年真题
  • 上海市
  • 四川省
  • 广东省
  • 湖南省
  • 湖北省
  • 江苏省
  • 浙江省
  • 安徽省
  • 福建省
  • 江西省
  • 山东省
  • 河南省
  • 甘肃省
  • 澳门特别行政区
  • 青海省
  • 内蒙古自治区
  • 广西壮族自治区
  • 新疆维吾尔自治区
  • 西藏自治区
  • 宁夏回族自治区
  • 中国台湾省
  • 香港特别行政区
  • 北京市
  • 陕西省
  • 云南省
  • 贵州省
  • 海南省
  • 黑龙江省
  • 吉林省
  • 辽宁省
  • 山西省
  • 河北省
  • 重庆市
  • 天津市
押密题库
本科
专科
视频题库
考证通关
笔果题库返回
互联网及其应用
历年真题
仔细阅读下列源代码,按要求完成下列各小题。 HTML 标记 < /title> </head> <body> <hl>HTML 语言 </hl> <h2>第1 章 HTML简介 </h2> <pre> HTML是英文Hyper Text Markup Language的缩写,中文译为“超文本标记语言”,它 是一种计算机程序语言,用来编写Web网页。 </pre> HTML是一种超文本链接标记语言,可以链接到一个文件、一个网址、或一个文件中的锚点。如:北京大学的网址是http://www. pku. edu. cn,欢迎访问“北京大学”! <table border = 1> <tr> <td> 学号 </td > <td >姓名 </td > <td > 性别 </td > <td > 年龄 </td > <td > < tr >< td >20010001 </td >< td > 张明 </td >< td > 男 </td >< td > 19 </td >< td> </table> <script language = “JavaScript”> var name = window, prompt(“ 请输入姓名:”,“”); document. write(name + “,您好!” “欢迎访问本站点。<br > ”); </script> </body> </html> (1) 在浏览器标题栏显示的内容是什么? (2) <h2 >…</h2 >标记的作用是什么? (3) 将“北京大学”链接到http://www. pku. edu. cn,给出源代码。 (4) 网页中插入了一个表格,根据源代码给出这张表格。 (5) 源代码中插入了 JavaScript脚本小程序,如果在提示窗的文本框中输入“ABC”, 然后单击“确定”按钮,这段小程序运行的结果是什么? </div> <div class="cell-view"> </div> <div class="cell-view"> <div class="best-answer"> <a style="color: #FFFFFF" href="/m/login.html">查看最佳答案</a> </div> </div> <!-- 上一题 下一题 --> <div class="cell-view"> <div class="flex-center flex-between"> <a style="color: #FFFFFF" href="https://www.biguotk.com/m/ask/true-03142-231229.html"> <button class="change" style="cursor: pointer"> 上一题 </button> </a> <a style="color: #FFFFFF" href="https://www.biguotk.com/m/ask/true-03142-231127.html"> <button class="change" style="cursor: pointer"> 下一题 </button> </a> </div> </div> </div> <div class="foot-page"> <div class="flex company-info"> <div class="right-ten"><script type="text/javascript" src="https://s4.cnzz.com/z_stat.php?id=1279061690&web_id=1279061690"></script> </div> <div>深圳市笔果教育科技有限公司</div> </div> <div class="foot-nick-num">粤ICP备17094429号-1</div> </div> <div id="ff"> <div class="guanbi"><img src="/new_web/wap/img/xc.png" width="18" height="18"></div> <a href="javascript:;" class="zhengti" > <div class="logo_fc"><img src="/new_web/wap/img/logoooo.png" width="38" height="38"></div> <div class="wenzi" style="color: rgb(251,221,81)"> 自考笔果题库APP<br> <strong style="color: rgb(251,221,81)">更优刷题体验,尽在笔果APP!</strong> </div> <div class="tiyan" style="color:#fff;text-align:center;line-height:30px;width:80px;height:30px;background:#29c229;border:1px solid #3f3;right:20px;">立即下载</div> </a> </div> </body> </html> <script> $(function () { var province = ''; var professions_name = ''; if (province !== ''){ var province = province; Cookies.set('province', province, { expires: 1, path: '/' });//1天过期 } else{ var province = '省份选择'; } if (professions_name !== ''){ var professions_name = professions_name; Cookies.set('professions_name', professions_name, { expires: 1, path: '/' });//1天过期 } else{ var professions_name = '专业选择'; } if (Cookies.get('province')!== undefined){ $('.province').text(Cookies.get('province')); }else{ $('.province').text(province); } if (Cookies.get('professions_name')!== undefined ){ $('.major').text(Cookies.get('professions_name')); }else{ $('.major').text(professions_name); } $("#user-center").click(function () { $(".mask").show(); $(".user-info-view").slideToggle(500) }); $("#close-user-center").click(function () { $(".mask").hide(); $(".user-info-view").slideToggle(500) }); $(".user-center-list>ul a ").click(function () { $(this).children("li").addClass("user-center-selected").siblings().removeClass("user-center-selected") }); //省份选择 $("#province-view>ul li").click(function () { $(this).addClass("nav-selected-province").siblings().removeClass("nav-selected-province"); //获取选中的li里面的值 var id=$(this).val(); //24 var text=$(this).text(); //陕西 Cookies.set('province', text, { expires: 1, path: '/' });//1天过期 Cookies.set('province_id', id, { expires: 1, path: '/' });//1天过期 getMajor(id,1); //把值放在省里,显示 $(".province").text(text); }); function getMajor(id,type){ //通过省份id 获取专业 $.ajax({ url: "https://www.biguotk.com/m/province", type: 'post', dataType: 'json', data: {province_id: id}, success:function(data) { if(data.result_code==1){ // console.log(data.data[1]) 本 data.data[2] 专 if (type === 1){ var array = data.data[1]; } else{ var array = data.data[2]; } createMajorList(array); $("#major-view").show(500); $("#major-view>ul li").click(function () { //选择专业 $(this).addClass("nav-selected-major").siblings().removeClass("nav-selected-major"); var id = $(this).attr('code'); //专业的id; var name = $(this).text(); //专业 $(".major").text(name); Cookies.set('professions_name',name,{ expires: 1, path: '/' }); //把专业名称缓存 selectMajor(id); $("#major-view").hide(500); }); }else{ alert('请稍后再试!'); } } }) } $(".province-cell").click(function () { $("#province-view").toggle(500) }); $(".majors").click(function () { var id = Cookies.get('province_id'); getMajor(id,1); $("#major-view").toggle(500); }); /* 切换专科本科*/ $(".layer-box .layer").click(function(){ $(this).addClass("selected").siblings().removeClass("selected"); // var id=$(this).val(); //24 var text=$(this).text(); //专科,本科 if (text === '专科'){ getMajor(Cookies.get('province_id'),2); }else if(text === '本科' ){ getMajor(Cookies.get('province_id'),1); } // console.log(text); }); /* 生成专业列表 */ function createMajorList(array) { var count =array.length; //获取数组长度 var html = ''; for ($i = 0;$i<count;$i++){ html += " <li code ="+array[$i]['id']+" >"+ array[$i]['name'] +" </li> "; } $("#major-view>ul").html(html); } $("#major-view>ul li").click(function () { $(this).addClass("nav-selected-major").siblings().removeClass("nav-selected-major"); }); /* 判断广告 */ if (Cookies.get('download_ads')== 1 ){ $("#footer_fill").hide(); $("#ff").hide(); } /* 关闭广告 */ $("#ff .guanbi").on("click", function () { $("#footer_fill").hide(); $("#ff").hide(); Cookies.set('download_ads','1', {expires:1,path:'/' });//1天过期 }) //点击下载链接 $(".zhengti").click(function () { $.ajax({ url: "https://www.biguotk.com/m/download_increment", type: 'post', // dataType: 'json', // data: {num:1}, success:function(data) { if(data.code==1){ window.location.href="http://a.app.qq.com/o/simple.jsp?pkgname=com.dep.biguo"; } } }); }) }); /* 选择专业 */ function selectMajor(id){ //选择专业 if( $('#is_login').val()!= 0){ $.ajax({ url: "https://www.biguotk.com/update_professions", type: 'post', dataType: 'json', data: {update_professions_id: id}, success:function(data) { if(data.result_code==1){ layer.msg(data.result_info); location.reload(); }else{ alert('请稍后再试'); } } }) } localStorage.setItem('professions_id',id); Cookies.set('professions_id',id,{ expires:1, path:'/'}); // alert ( Cookies.get('professions_id')) ; } </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?053807d6ebd5b097e3e5455360ebd77d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> $(function () { $(".type-cell").click(function () { $("#type-view").toggle(500) }) $("#type-view>ul li").click(function () { $(this).addClass("nav-selected-type").siblings().removeClass("nav-selected-type") }) }) </script>