本答案对应课程为:点我自动跳转查看
本课程起止时间为:2020-02-24到2020-07-31
本篇答案更新状态:已完结
【作业】第一章 Web技术概述 1 – 开发环境安装与配置
1、 问题:1. 安装DreamweaverCS6以上版本,学会新建Dreamweaver的站点,保存路径不含中文,将目录结构截图上传。2. 安装最新版谷歌浏览器,完成后截图上传。共上传2张图片。
评分规则: 【 两张图片与作业要求一致,得10分。少网站结构图,扣6分,少谷歌截图,扣4分。首页未命名为index扣1分,未创建images文件夹扣1分,未创建css文件夹扣1分,未创建js文件夹扣1分,未使用学号文件夹作为根目录,扣1分,未提交得0分。
】
【作业】第一章 Web技术概述 2 – DW软件使用基础
1、 问题:创建好站点后,编辑index.html页面,做一张最简单的图文排版页面,可使用素材包里的图文,也可自行网络搜索文字与插图(注意不可使用有版权水印的图片),页面浏览效果如图,可自行尝试其他效果,例如:文本颜色、文本大小、居中排列、背景图、背景色等。完成后,将整个学号文件夹打包压缩后上传。
评分规则: 【 文字部分,有标题有正文,图片正常显示则得满分。没有标题扣2分,没有正文扣2分,图片无法显示扣2分,文件夹结构有误(包含中文文件、首页未命名为index)扣2分。空白页面或页面无法打开得0分。
】
第二章 HTML与CSS 1-分析网页的HTML结构
1、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,该页面包含外部js文件的代码是哪一行(哪几行)?
答案: 【
】
分析:【标签里包含的所有<script>标签</span>】</p>
<p>2、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,该页面包含外部CSS文件的代码是哪一行(哪几行)?<br />
答案: 【<span style="color:red !important"><link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css"></span>】<br />
分析:【<span style="color:red !important"><title>标签里包含的所有<link>标签</span>】</p>
<p>3、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,该页面顶部第一行主导航条的HTML代码是哪一行(哪几行)?<br />
答案: 【<span style="color:red !important"></p>
<nav>
<ul>
<li><a href="#">Buy</a></li>
<li><a href="#">Rent</a></li>
<li><a href="#">Sell</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<p> <a href="#" class="login_btn">Login</a><br />
</nav>
<p></span>】<br />
分析:【<span style="color:red !important"></p>
<nav>标签为导航标签</span>】</p>
<p>4、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,页面第一屏大背景图上的两行标题文字对应的HTML代码是哪一行(哪几行)?<br />
答案: 【<span style="color:red !important"></p>
<h2 class="caption"><a name="toc-4"></a>Find You Dream Home</h2>
<h3 class="properties">Appartements - Houses - Mansions</h3>
<p></span>】<br />
分析:【<span style="color:red !important"></p>
<h1>~</p>
<h6>为六级标题标签。</span>】</p>
<p>5、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,该页面第二屏开始的九宫格图片列表中第2行第3格的整块HTML代码是哪一行(哪几行)?<br />
答案: 【<span style="color:red !important"></p>
<li>
<a href="#"><br />
<img decoding="async" src="img/property_2.jpg" alt="" title="" class="property_img"/><br />
</a><br />
<span class="price">$1000</span></p>
<div class="property_details">
<h1>
<a href="#">Fuisque dictum tortor at purus libero</a><br />
</h1>
<h2 ><a name="toc-5"></a>2 kitchens, 2 bed, 2 bath... <span class="property_size">(288ftsq)</span></h2>
</p></div>
</li>
<p></span>】<br />
分析:【<span style="color:red !important">有9块相似代码,第2列第3块为第5对</p>
<li>标签</span>】</p>
<p>6、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,该页面第二屏开始的九宫格图片列表中第3行第2格的插图HTML代码是哪一行?<br />
答案: 【<span style="color:red !important"><img decoding="async" src="img/property_2.jpg" alt="" title="" class="property_img"/></span>】<br />
分析:【<span style="color:red !important">第3行第2格为第8对</p>
<li>中的图片标签,<img>为插入图片标签,只需这一行。</span>】</p>
<p>7、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,“VIEW MORE LISTINGS”超链接代码是哪一行?<br />
答案: 【<span style="color:red !important"><a href="#" class="more_listing_btn">View More Listings</a></span>】<br />
分析:【<span style="color:red !important">超链接为<a>标签,只需这一行。</span>】</p>
<p>8、 问题:在Dreamweaver中打开素材包La Casa模板的index页面,在代码视图中分析页面HTML结构,页尾版权信息(包含年份和©符号)的代码是哪一行(哪几行)?<br />
答案: 【<span style="color:red !important"></p>
<div class="copyrights wrapper">
Copyright © 2015 <a href="http://pixelhint.com" target="_blank" class="ph_link" title="Download more free Templates" rel="noopener noreferrer">Pixelhint.com</a>. All Rights Reserved.
</div>
<p></span>】</p>
<p> <div id="hide-content" class="text-download" style="display:none;"></div>
<!-- <link rel="stylesheet" href="/wp-content/plugins/fufeiyuedu/assets/css/xunhuweb-plugins-base.css"> -->
<link rel="stylesheet" type="text/css" href="//www.tiku.icu/wp-content/cache/wpfc-minified/4aozqkn/bgwte.css" media="all"/>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<style>
.find_info {
color:red;
}
.xunhu-modal-content {
width:500px
}
.xunhu-ptb40 {
padding: 20px 0;
text-align: center;
line-height: 40px;
}
.form-text {
width: 260px;
}
.text-download {
font-size: 14px;
padding: 20px;
border: 1px dashed #ffc107;
background: #fffdf8;
margin-bottom: 10px;
margin-top: 10px;
}
.wxpay-section{
display:none;
}
</style>
<script type="text/javascript">
function isWeiXin(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
return true;
}else{
return false;
}
}
function isQQAPP(){
var isIosQQ = ( /(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent) && /\sQQ/i.test(navigator.userAgent));
var isAndroidQQ = ( /(Android)/i.test(navigator.userAgent) && /MQQBrowser/i.test(navigator.userAgent) && /\sQQ/i.test((navigator.userAgent).split('MQQBrowser')));
if(isIosQQ || isAndroidQQ){
return true;
}else{
return false;
}
}
(function($){
$('.wshop-pay-button .xh-buy-vip .vip-close,#wshop-modal-membership .cover').click(function(){
$('#wshop-modal-membership').hide();
});
if(!window.__modal_membership_resize){
window.__modal_membership_resize=function(){
var $ul =$('#wshop-modal-membership .xh-buy-vip');
var width = window.innerWidth,height = window.innerHeight;
if (typeof width != 'number') {
if (document.compatMode == 'CSS1Compat') {
width = document.documentElement.clientWidth;
height = document.documentElement.clientHeight;
} else {
width = document.body.clientWidth;
height = document.body.clientHeight;
}
}
$ul.css({
top:((height - $ul.height()) / 2) + "px",
left:((width - $ul.width()) / 2) + "px"
});
};
}
$(window).resize(function(){
window.__modal_membership_resize();
});
})(jQuery);
</script>
<div class="xunhu-text-center xunhu-font font-14 text-download">
<span id='mipjump'></span>
<span id='miporder'></span>
<span style="font-size:14px">本门课程剩余<strong style="font-size:16px;color:red;">章节答案</strong>为付费内容</span><br/><span style="font-size:14px;color:red">本文章不含期末不含主观题!!</span><br/><span style="font-size:14px;color:red">本文章不含期末不含主观题!!</span><br/><span style="font-size:14px">支付后可长期查看</span><br/><span style="font-size:14px;color:red">有疑问请添加客服QQ 2356025045反馈</span><br/><span style="font-size:14px">如遇卡顿看不了请换个浏览器即可打开</span><br/><span style="font-size:16px;">请看清楚了再购买哦,电子资源购买后不支持退款哦</span><br/>
<div class="xunhu-text-center xunhu-mt10">
<a href="javascript:void(0);" class="xunhu-btn xunhu-btn-green" id="fufei_modal_show">点我支付 ¥5</a>
<div class="xunhu-text-center xunhu-mt10">
<a href="javascript:void(0);" id="xh_order_show" class="xunhu-btn xunhu-btn-warning">已支付?输入手机号或商家订单号阅读</a>
</div>
<div>
</div>
</div>
</div>
<div id="fufei_modal" class="xunhu-modal" style="display: none;">
<!-- 付费查看+付费下载弹窗支付 -->
<div class="xunhu-modal-content">
<span class="xunhu-close"></span>
<div class="xunhu-ptb40">
<div>
<strong>请输入手机号或商家订单号</strong>
<div>
<input type="hidden" id="find_post_id" value="143078" />
<input class="form-control form-text required" placeholder="请输入手机号或商家订单号" type="text" id="find_out_trade_no" value="" size="20" maxlength="128">
<input class="btn btn-block btn-success mt-3 form-submit" type="button" id="find_order" value="查询">
<div>
<span style="display: block;color:red;line-height: 30px;font-size: 18px;">打不开请联系客服QQ 2356025045</span>
<a class="help-order-id-toggle" href="javascript:void(0);" title="如何查看商家订单号?">商家订单号在哪里?点此了解</a>
</div>
</div>
</div>
<span class="find_info" style='display:none;'>
</span>
<div id="help-order-id" class="mt-3 text-center" style="display: none;">
<hr><h3>商家订单号查看步骤</h3>
<div class="alipay-section">
<div style="font-size: 2.2rem;color: red;"><strong>打开支付宝</strong></div>
<div>方法一:我的 > 账单 > 账单详情 > 更多>复制商家订单号</div>
<div>方法二:我的 > 账单 >搜索关键字【网课小帮手】<br/>> 账单详情 > 更多>复制商家订单号</div>
<div style="color: red;">方法三:联系客服QQ 2356025045</div>
<div><img decoding="async" alt="网课小帮手" src="/wp-content/plugins/fufeiyuedu/assets/image/alipay_detail.jpg"></div></div>
<div style="display:none;" class="wxpay-section mt-3"><div style="font-size: 1.2rem;"><strong>微信支付</strong></div>
<div>我 > 支付 > 钱包 > 账单 > 账单详情</div><div><img decoding="async" alt="网课小帮手" src="/wp-content/plugins/fufeiyuedu/assets/image/wxpay_detail.jpg"></div></div></div>
</div>
</div>
</div>
<div id="xh_order_modal" class="xunhu-modal" style="display: none;">
<!-- 付费查看+付费下载弹窗支付 -->
<div class="xunhu-modal-content">
<span class="xunhu-close" onclick=""></span>
<div class="xunhu-ptb40">
<form action="/wp-content/plugins/fufeiyuedu/api.php" method="post" onsubmit = "return create_order()">
<div class="xunhu-font xunhu-text-center font-16">
<input type="hidden" name="post_id" value="143078" />
<div>
<p id="showTitle" style="line-height: 19px;">
</p>
<strong style='color:red'>手机号用于查询订单,请认真核对</strong>
</div>
<div>
<input type="text" class="form-text" name="mobile" placeholder="请输入11位手机号码" >
</div>
<span class="find_info" style='text-align: center;display:none;'>
</span>
<div class="radio">
<input id="radio-alipay" name="pay_type" type="radio" value="1" checked="checked">
<label for="radio-alipay" class="radio-label">
<img decoding="async" alt="网课小帮手" src="/wp-content/plugins/fufeiyuedu/assets/image/alipay.png" style="display: inline-block;height: 16px;width: 16px;vertical-align: middle">
支付宝 </label>
</div>
</div>
<div class="xunhu-text-center xunhu-mt10">
<input type="submit" value="立即支付" />
</div>
</form>
</div>
</div>
</div>
<script>
var $ = jQuery;
//显示标题
let title = document.querySelector('h1.entry-title.p-name a').innerText.split(' ')
let years= parseInt(title[0])?parseInt(title[0]):'';
document.querySelector("#showTitle").innerHTML='<span style="">当前文章名称</span><p style="color:red;font-size:25px;line-height:1;">《'+title.slice(1,-1)+'》</p>';
if(location.hash=='#mipjump'){
setTimeout(function(){
$('#fufei_modal_show').click();
},1000)
}
if(location.hash=='#miporder'){
setTimeout(function(){
$('#xh_order_show').click();
},1000)
}
$("#xh_order_modal input[type='text']").keydown(function (e) {
$("#xh_order_modal input[type='text']").css("border-color","");
$("#xh_order_modal .find_info").hide();
})
var strcookie = document.cookie;//获取cookie字符串
var arrcookie = strcookie.split("; ");//分割
//遍历匹配
for ( var i = 0; i < arrcookie.length; i++) {
var arr = arrcookie[i].split("=");
if (arr[0] == 'fufei_post_143078'){
var out_trade_no = arr[1];
}
}
function setCookie(cookName, cookValue, expireHours){
var CookieStr = cookName + "=" + escape(cookValue);
//不设定过期时间,浏览器关闭时,Cookie自动消失
if(expireHours > 0){
var date = new Date();
var ms = expireHours * 3600 * 1000;
date.setTime(date.getTime() + ms);
CookieStr += ";path=/;expires=" + date.toGMTString();
}
if(getCookie(cookName)){
delCookie(cookName)
}
if(getCookie(cookName)){
delCookie(cookName)
}
document.cookie = CookieStr;
}
function getCookie(name){
var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
if(arr=document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
}
function delCookie(name){
var exp = new Date();
exp.setTime(exp.getTime() - 100000);
var cval=getCookie(name);
if(cval!=null){
console.log(document.cookie)
document.cookie= name + "=null;path=/;expires="+exp.toGMTString();
}
}
$.ajax({
// url: 'http://www.tiku.icu/wp-content/plugins/fufeiyuedu/api.php',
// url: location.protocol+"//"+location.host + '/wp-content/plugins/fufeiyuedu/api.php',
url: "https://"+location.host + '/wp-content/plugins/fufeiyuedu/api.php?t='+Math.random(),
type: 'POST',
cache: false,
data: {'action':'hide_content','out_trade_no':out_trade_no,'t':Math.random()},
success: function(res) {
if(res.length > 4){
$(".xunhu-text-center.xunhu-font").hide();
$("#hide-content").append(res);
$("#hide-content").css("display","block");
$('html,body').animate({scrollTop:$('#hide-content').offset().top}, 800);
//location.href = "#hide-content";
}
},error:function(e){
console.log(e);
}
});
$("#find_out_trade_no").keydown(function (e) {
$(".find_info").hide();
})
$(".help-order-id-toggle").click(function (e) {
if($(this).data("show") == '1'){
$(this).data("show",'0');
$("#help-order-id").css("display","none");
}else{
$(this).data("show",'1');
$("#help-order-id").css("display","block");
}
});
function getHandle(url,data,callback){
let paramArr = [];
let encodeData;
if (data instanceof Object) {
for (let key in data) {
// 参数拼接需要通过 encodeURIComponent 进行编码
paramArr.push( encodeURIComponent(key) + '=' + encodeURIComponent(data[key]) )
}
encodeData = paramArr.join('&')
}
url +="?"+ encodeData;
var xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
//如果是IE5或者IE6浏览器,则使用ActiveX对象
xhr = ActiveXObject("Microsoft.XMLHTTP");
}
xhr.open('GET',url,true)
xhr.onreadystatechange = function(){
//alert(""+xhr.readyState+ xhr.status+ xhr.responseText)
if(xhr.readyState === 3 && xhr.status == 200 ){
callback(JSON.parse(xhr.responseText))
}
}
xhr.send(null)
}
function create_order() {
$("#xh_order_modal input[type='text']").val($("#xh_order_modal input[type='text']").val().trim())
if($("#xh_order_modal input[type='text']").val().trim().length != 11){
$("#xh_order_modal input[type='text']").css("border-color","red");
$("#xh_order_modal .find_info").text("请正确输入你的手机号码(11位)").show();
return false;
}
if(isWeiXin()){
if($("#radio-alipay")[0].checked){
alert("微信里面不能打开支付宝啦,请点击右上角选择使用浏览器打开进行支付");
return false;
}
}
if(isQQAPP()){
if($("#radio-alipay")[0].checked){
alert("QQ里面不能打开支付宝啦,请点击右上角选择使用浏览器打开进行支付");
return false;
}
}
}
(function ($) {
$('#find_out_trade_no').bind('keypress',function(event){
if(event.keyCode == 13){
$("#find_order").click()
}
})
$("#find_order").click(function (e) {
$("#find_out_trade_no").val($("#find_out_trade_no").val().replace(/\s/g,''))
if($("#find_out_trade_no").val().trim().length == 11 || $("#find_out_trade_no").val().trim().length == 21){
}else if($("#find_out_trade_no").val().trim().length == 28){
$("#fufei_modal .find_info").html("请输入商家订单号(21位)<br/>不是订单号哦<br/>商家订单号位于订单号下方").show();
return false;
}else if($("#find_out_trade_no").val().trim().length == 14 || $("#find_out_trade_no").val().trim().length == 16|| $("#find_out_trade_no").val().trim().length == 18|| $("#find_out_trade_no").val().trim().length == 24 || $("#find_out_trade_no").val().trim().length == 25|| $("#find_out_trade_no").val().trim().length == 26){
$("#fufei_modal .find_info").html("这个订单号好像不是我家的订单哦!<br/>请确认收款人是否为<strong>网课小帮手</strong><br/>").show();
return false;
}else{
$("#fufei_modal .find_info").html("请输入你的手机号码(11位)或商家订单号(21位)<br/>你输入的数据有误<br/>如已购买,但查不到请及时添加售后客服QQ 2356025045 进行处理").show();
if(location.href == 'https://vip.studypro.club/2021/%e6%9f%a5%e8%ae%a2%e5%8d%95/'){
$("#fufei_modal .find_info").html("请输入<strong style='color:green'>商家订单号</strong>进行查询<br/>此处不能使用手机号查询<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
}
return false;
}
var openFlag = false;
$.ajax({
//url: 'http://www.tiku.icu/wp-content/plugins/fufeiyuedu/api.php',
// url: location.protocol+"//"+location.host + '/wp-content/plugins/fufeiyuedu/api.php',
url: "https://"+location.host + '/wp-content/plugins/fufeiyuedu/api.php',
type: 'get',
cache: false,
//dataType: "JSON",
data: {'out_trade_no':$("#find_out_trade_no").val().trim(), 'post_id':$("#find_post_id").val().trim(),'t':Math.random()},
success: function(res) {
try{
res = JSON.parse(res)
if(res.data.content.length > 10){
openFlag = true;
var fufei_post = '';
if($("#find_out_trade_no").val().length < 21){
fufei_post = $("#find_post_id").val().trim() + "_" + $("#find_out_trade_no").val().trim();
}else{
fufei_post = $("#find_out_trade_no").val().trim();
}
var post_id = res.data.post_id;
setCookie('fufei_post_'+post_id,fufei_post,144);
var localhost = "https://"+location.host + decodeURIComponent(res.data.content)
location.href = localhost
} else{
if($("#find_out_trade_no").val().trim().length == 11){
$("#fufei_modal .find_info").html("通过手机号未查询到购买记录<br/>可尝试使用<strong style='color:green'>商家订单号</strong>进行查询<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
if(location.href == 'https://vip.studypro.club/2021/%e6%9f%a5%e8%ae%a2%e5%8d%95/'){
$("#fufei_modal .find_info").html("请输入<strong style='color:green'>商家订单号</strong>进行查询<br/>此处不能使用手机号查询<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
}
}else{
$("#fufei_modal .find_info").html("不存在购买记录<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
}
}
}catch(e){
$("#fufei_modal .find_info").html("付费区域被浏览器拦截啦<br/>可尝试更换浏览器进行查阅<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
}
},error:function(e){
//alert(JSON.stringify(arguments))
setTimeout(function(){
if(location.href.indexOf('https') != -1){
$("#fufei_modal .find_info").html("如果你看见了我,请再次点击一下查询按钮<br/>应该就能看见答案啦!<br/>如果依旧没看见答案请及时添加售后客服QQ 2356025045 进行处理").show();
}else{
location.href = location.href.replace("http://","https://")
}
},3000)
$("#fufei_modal .find_info").html("服务器出现了奇怪的错误,3s后将会自动刷新<br/>请再次输入手机号或者商家订单号进行查询<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
// getHandle(location.protocol+"//"+location.host + '/wp-content/plugins/fufeiyuedu/api.php',{'out_trade_no':$("#find_out_trade_no").val().trim(), 'post_id':$("#find_post_id").val().trim()},function(res){
getHandle("https://"+location.host + '/wp-content/plugins/fufeiyuedu/api.php',{'out_trade_no':$("#find_out_trade_no").val().trim(), 'post_id':$("#find_post_id").val().trim()},function(res){
//alert("调试代码:"+JSON.stringify(res));
if(res.data.content.length > 10){
openFlag = true
var fufei_post = '';
if($("#find_out_trade_no").val().length < 21){
fufei_post = $("#find_post_id").val().trim() + "_" + $("#find_out_trade_no").val().trim();
}else{
fufei_post = $("#find_out_trade_no").val().trim();
}
var post_id = res.data.post_id;
setCookie('fufei_post_'+post_id,fufei_post,144);
//var localhost = location.href.split("studypro.club")[0]+"studypro.club"+res.data.content.split("studypro.club")[1]
var localhost = "https://"+location.host + decodeURIComponent(res.data.content)
if(location.href == localhost){
location.reload()
}else{
location.href = localhost
}
} else{
$("#fufei_modal .find_info").html("不存在购买记录<br/>若出现已经付款却打不开的现象<br/>请及时添加售后客服QQ 2356025045 进行处理").show();
}
})
console.log(e);
}
})
});
$("body").append($("#xh_order_modal"));
$("body").append($("#fufei_modal"));
$('#fufei_modal_show').click(function () {
$("#xh_order_modal").css("display","block");
});
$('#xh_order_show').click(function () {
$("#fufei_modal").css("display","block");
});
$('.xunhu-close').click(function () {
$(this).parent().parent().css('display','none');
});
})(jQuery);
</script>
</p>
<div class="clear"></div>
</div>
<nav class="navigation post-navigation" aria-label="文章">
<h2 class="screen-reader-text">文章导航</h2>
<div class="nav-links"><div class="nav-previous"><a href="http://www.tiku.icu/%e4%b8%ad%e5%9b%bd%e5%a4%a7%e5%ad%a6mooc-%e7%bd%91%e9%a1%b5%e8%ae%be%e8%ae%a1-%e7%8e%8b%e6%ad%a3%e7%ba%a2b%e6%a1%82%e6%9e%97%e7%90%86%e5%b7%a5%e5%a4%a7%e5%ad%a6%e5%8d%9a%e6%96%87%e7%ae%a1/" rel="prev"><span class="meta-nav" aria-hidden="true">前一页</span> <span class="screen-reader-text">上一篇:</span> <span class="post-title">2020 网页设计-王正红b(桂林理工大学博文管理学院) 最新满分章节测试答案</span></a></div><div class="nav-next"><a href="http://www.tiku.icu/%e4%b8%ad%e5%9b%bd%e5%a4%a7%e5%ad%a6mooc-%e7%bd%91%e9%a1%b5%e8%ae%be%e8%ae%a1%e4%b8%8e%e5%88%b6%e4%bd%9c%e7%9a%96%e8%a5%bf%e5%ad%a6%e9%99%a2-%e6%9c%80%e6%96%b0%e4%b8%ad%e5%9b%bd%e5%a4%a7/" rel="next"><span class="meta-nav" aria-hidden="true">后一页</span> <span class="screen-reader-text">下一篇:</span> <span class="post-title">2020 网页设计与制作(皖西学院) 最新满分章节测试答案</span></a></div></div>
</nav> <div class="clear"></div>
</article>
<div id="comments" class="comments-area">
<div id="respond" class="comment-respond">
<h2 id="reply-title" class="comment-reply-title">发表回复 <small><a rel="nofollow" id="cancel-comment-reply-link" href="/%E4%B8%AD%E5%9B%BD%E5%A4%A7%E5%AD%A6mooc-%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1%E4%B8%8E%E5%88%B6%E4%BD%9C%E6%96%BD%E8%8E%B9-%E5%8D%97%E4%BA%AC%E7%90%86%E5%B7%A5%E5%A4%A7%E5%AD%A6%E7%B4%AB/#respond" style="display:none;">取消回复</a></small></h2><form action="http://www.tiku.icu/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">您的电子邮箱地址不会被公开。</span> <span class="required-field-message">必填项已用 <span class="required">*</span> 标注</span></p><p class="comment-form-comment"><label for="comment">评论 <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">显示名称 <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">电子邮箱地址 <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="发表评论" /> <input type='hidden' name='comment_post_ID' value='143078' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><input type="checkbox" name="comment_mail_notify" id="comment_mail_notify" value="comment_mail_notify" checked="checked" /><label for="comment_mail_notify" style="display:inline;" >有人回复时邮件通知我</label></form> </div><!-- #respond -->
</div>
<!-- .comments-area -->
</main>
<aside id="secondary" class="sidebar widget-area" role="complementary">
<section id="search-3" class="widget widget_search"><form role="search" method="get" class="search-form" action="https://www.tiku.icu/">
<style>
.select:after {
content:"▼";
padding: 12px 8px;
position: absolute; right: 10px; top: 0;
z-index: 1;
text-align: center;
width: 10%;
height: 100%;
pointer-events: none;
box-sizing: border-box;
}
</style>
<select name="post_type" class="search-select" style="-webkit-appearance: menulist;appearance:menulist;width: 70px !important;padding: 8px 0 !important;font-size: 10px !important;height:36px !important;line-height:36px !important;white-space:nowrap;float:left;">
<option value="满分">所有答案</option>
<option value="智慧树">智慧树</option>
<label><span class="screen-reader-text">搜索:</span><input type="search" class="search-field" style="padding-left:3px;width:70%;"placeholder="请输入你的课程名称进行搜索..." value="" name="s" title="搜索:" /></label><input type="submit" class="search-submit" value="搜索" /></form><div class="clear"></div></section><section id="custom_html-4" class="widget_text widget widget_custom_html"><h4 class="widget-title">微信公众号查答案</h4><div class="textwidget custom-html-widget"><img alt="微信公众号【网课小帮手答案】" src="http://www.tiku.icu/wp-content/uploads/2022/10/QQ截图2020110612132.png" title="微信公众号【白泽问答】" /></div><div class="clear"></div></section><section id="custom_html-8" class="widget_text widget widget_custom_html"><h4 class="widget-title">安卓下载</h4><div class="textwidget custom-html-widget"><a href="http://www.tiku.icu/%E7%BD%91%E8%AF%BE%E5%B0%8F%E5%B8%AE%E6%89%8B.apk">网课小帮手APP</a>
</div><div class="clear"></div></section><section id="custom_html-10" class="widget_text widget widget_custom_html"><h4 class="widget-title">网页搜题</h4><div class="textwidget custom-html-widget"><a href="https://www.studypro.club">搜题小帮手</a></div><div class="clear"></div></section></aside>
<div class="clear"></div>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<div id="site-publisher" itemprop="publisher" itemscope >
<meta itemprop="name" content="网课帮手" />
<meta itemprop="url" content="http://www.tiku.icu/" />
</div>
<div class="site-info wrapper">
<p id="site-generator" class="site-info footer-copy" style="font-size:14px;">
<a href="http://www.tiku.icu/" rel="home">© 2024 网课帮手.</a>
<!-- <span style="display:none;" id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span>次<br/>本站共接待了<span id="busuanzi_value_site_uv"></span>名游客</span> -->
<!-- <span style="display:none;" id="timeDate">载入天数...</span><span style="display:none;" id="times">载入时分秒...</span><br/> -->
<span>
本站点所有资源均由网络搜索提供,如有发现侵权<br/>
请发送邮件到chenshi.forever@gmail.com,我们将及时断开侵权资源的链接
</span>
<span style="block"> 备案号:<a href="http://beian.miit.gov.cn">粤ICP备2021119840号-4</a></span>
</p>
<script>// <![CDATA[
// var now = new Date();
// function createtime(){ var grt= new Date("04/05/2019 08:00:00");//此处修改你的建站时间或者网站上线时间
// now.setTime(now.getTime()+250);
// days = (now - grt ) / 1000 / 60 / 60 / 24; dnum = Math.floor(days);
// hours = (now - grt ) / 1000 / 60 / 60 - (24 * dnum); hnum = Math.floor(hours);
// if(String(hnum).length ==1 ){hnum = "0" + hnum;} minutes = (now - grt ) / 1000 /60 - (24 * 60 * dnum) - (60 * hnum);
// mnum = Math.floor(minutes); if(String(mnum).length ==1 ){mnum = "0" + mnum;}
// seconds = (now - grt ) / 1000 - (24 * 60 * 60 * dnum) - (60 * 60 * hnum) - (60 * mnum);
// snum = Math.round(seconds); if(String(snum).length ==1 ){snum = "0" + snum;}
// document.getElementById("timeDate").innerHTML = "本网站已安全运行"+dnum+"天";
// document.getElementById("times").innerHTML = hnum + "小时" + mnum + "分" + snum + "秒"; }
// setInterval("createtime()",250);
// ]]></script>
</div>
<script>
var el = document.createElement("script");
el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?01f5b5ff9fb1eca15769fb7b5702aad194d0d0cf674d3e1babd684868fdd35bcc112ff4abe50733e0ff1e1071a0fdc024b166ea2a296840a50a5288f35e2ca42";
el.id = "ttzz";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(el, s);
if(window.location.protocol == "http"){
//站长主动推送
!function(){var e=/([http|https]:\/\/[a-zA-Z0-9\_\.]+\.baidu\.com)/gi,r=window.location.href,o=document.referrer;if(!e.test(r)){var n="//api.share.baidu.com/s.gif";o?(n+="?r="+encodeURIComponent(document.referrer),r&&(n+="&l="+r)):r&&(n+="?l="+r);var t=new Image;t.src=n}}(window);
}else{
//两种方式
!function(){var e=/([http|https]:\/\/[a-zA-Z0-9\_\.]+\.baidu\.com)/gi,r=window.location.href,t=document.referrer;if(!e.test(r)){var o="//sp0.baidu.com/9_Q4simg2RQJ8t7jm9iCKT-xh_/s.gif";t?(o+="?r="+encodeURIComponent(document.referrer),r&&(o+="&l="+r)):r&&(o+="?l="+r);var i=new Image;i.src=o}}(window);
}
window.onload=function(){
var btn2 = document.getElementById('search_answer');
if(btn2){
btn2.addEventListener('click', (e)=>{
var seacher1 = document.getElementById('search-3')
var top1 = seacher1.offsetTop - 50
document.documentElement.scrollTop = top1
seacher1.getElementsByClassName('search-field')[0].focus()
e.preventDefault()
return false
}, false);
}
}
if(document.querySelector('.nav-links')){
dots = document.querySelector('.nav-links').querySelector('.page-numbers.dots');
if(dots){
let all = document.querySelector('.nav-links').querySelectorAll('.page-numbers')
// all[all.length-2].parentNode.removeChild(all[all.length-2])
}
if(location.href == 'https://vip.studypro.club/' || location.href == 'http://vip.studypro.club/' || location.href == 'http://www.studypro.club/' || location.href == 'http://www.studypro.club/'){
// document.querySelector('.nav-links').setAttribute('style',"visibility:hidden")
}
}
//根据时间判断选择框
changeOption()
function changeOption(){
let t = new Date().getHours()
if(t > 17 || t < 8 || (new Date().getDay() == 6 || new Date().getDay() == 0)){
document.querySelectorAll('.search-select').forEach(v=>{
v.outerHTML='<select name="post_type" class="search-select" style="-webkit-appearance: menulist;appearance:menulist;width: 70px !important;padding: 8px 0 !important;font-size: 10px !important;height:36px !important;line-height:36px !important;white-space:nowrap;float:left;"><option value="满分">所有</option><option value="智慧树">智慧树</option>搜索:</select>'
})
}
}
//自动打开查订单
getorder()
function getorder(){
if(location.pathname == '/%e6%9f%a5%e8%ae%a2%e5%8d%95/'){
document.getElementById('fufei_modal_show').setAttribute('style','display:none;')
document.getElementById('xh_order_show').click()
document.querySelector('#xh_order_show').innerHTML="已支付?输入商家订单号阅读"
document.querySelector('.navigation').setAttribute("style","display:none")
document.getElementById('find_out_trade_no').setAttribute("placeholder","请输入商家订单号查询")
document.querySelectorAll('#fufei_modal .xunhu-ptb40 strong')[0].innerHTML = "请输入商家订单号"
}
}
if(document.querySelector('.entry-content p') && document.querySelector('.entry-content p').innerHTML.indexOf('本答案对应课程为') !=-1){
document.querySelector('.entry-content p').innerHTML = document.querySelector('.entry-content p').innerHTML.replace(/本答案对应课程为:.*?<br>\n/,'')
document.querySelector('.entry-content p').innerHTML = document.querySelector('.entry-content p').innerHTML.replace(/本课程起止时间为:.*?<br>\n/,'')
document.querySelector('.entry-content p').innerHTML = document.querySelector('.entry-content p').innerHTML.replace(/本课程起止时间为:.*/,'')
document.querySelector('.entry-content p').innerHTML = document.querySelector('.entry-content p').innerHTML.replace(/本篇答案更新状态:.*?<\/strong>/,'')
document.querySelector('.entry-content p').innerHTML = document.querySelector('.entry-content p').innerHTML.replace(/本课程任课教师为:.*?/,'')
document.querySelector('.entry-header h1').innerHTML = document.querySelector('.entry-header h1').innerHTML.replace(/中国大学Mooc/ig,'')
}
document.querySelectorAll('.entry-header h2 a').forEach(v=>{
if(v.innerHTML.indexOf('Mooc') !=-1){
// v.innerHTML = v.innerHTML.replace(/Mooc/ig,'')
}
})
document.querySelectorAll('.p-name a').forEach(v=>{
if(v.innerHTML.indexOf('知到答案')!= -1){
// v.innerHTML = v.innerHTML.replace(/知到答案/gi,'')
}
if(v.innerHTML.indexOf('知到智慧树')!= -1){
//v.innerHTML = v.innerHTML.replace(/知到智慧树/gi,'')
}
})
document.querySelectorAll('.post-title').forEach(v=>{
if(v.innerHTML.indexOf('知到答案')!= -1){
// v.innerHTML = v.innerHTML.replace(/知到答案/gi,'')
}
if(v.innerHTML.indexOf('知到智慧树')!= -1){
// v.innerHTML = v.innerHTML.replace(/知到智慧树/gi,'')
}
})
document.querySelectorAll('title').forEach(v=>{
if(v.innerHTML.indexOf('知到')!= -1){
// v.innerHTML = v.innerHTML.replace(/知到/gi,'')
}
if(v.innerHTML.indexOf('智慧树')!= -1){
// v.innerHTML = v.innerHTML.replace(/智慧树/gi,'')
}
})
document.querySelectorAll('.tag-links a').forEach(v=>{
if(v.innerHTML.indexOf('中国大学')!= -1){
v.innerHTML = v.innerHTML.replace(/中国大学Mooc/gi,'大学Mooc')
}
if(v.innerHTML.indexOf('网课小帮手')!= -1){
// v.innerHTML = v.innerHTML.replace(/网课小帮手/gi,'')
}
if(v.innerHTML.indexOf('MOOC')!= -1){
// v.innerHTML = v.innerHTML.replace(/Mooc/gi,'')
}
if(v.innerHTML.indexOf('智慧树答案')!= -1){
// v.innerHTML = v.innerHTML.replace(/智慧树答案/gi,'')
}
if(v.innerHTML.indexOf('知到答案')!= -1){
// v.innerHTML = v.innerHTML.replace(/知到答案/gi,'')
}
if(v.innerHTML.indexOf('见面课答案')!= -1){
// v.innerHTML = v.innerHTML.replace(/见面课答案/gi,'')
}
})
document.querySelectorAll('.cat-links a').forEach(v=>{
if(v.innerHTML.indexOf('每周周末更新')!= -1){
// v.innerHTML = v.innerHTML.replace(/每周周末更新/gi,'')
}
if(v.innerHTML.indexOf('每5天更新一次')!= -1){
// v.innerHTML = v.innerHTML.replace(/每5天更新一次/gi,'')
}
if(v.innerHTML.indexOf('暂停更新')!= -1){
// v.innerHTML = v.innerHTML.replace(/暂停更新/gi,'')
}
})
document.querySelectorAll('.entry-summary').forEach(v=>{
if(v.querySelector('p').innerHTML.indexOf('本答案对应课程为') !=-1){
v.querySelector('p').innerHTML = v.querySelector('p').innerHTML.replace(/本答案对应课程为:.*?<br>\n/,'')
}
if(v.querySelector('p').innerHTML.indexOf('本课程起止时间为') !=-1){
v.querySelector('p').innerHTML = v.querySelector('p').innerHTML.replace(/本课程起止时间为.*?<br>\n/,'')
v.querySelector('p').innerHTML = v.querySelector('p').innerHTML.replace(/本课程起止时间为.*/,'')
}
if(v.querySelector('p').innerHTML.indexOf('本篇答案更新状态') !=-1){
v.querySelector('p').innerHTML = v.querySelector('p').innerHTML.replace(/本篇答案更新状态:.*?<\/strong>/,'')
}
if(v.querySelector('p').innerHTML.indexOf('本课程任课教师为') !=-1){
v.querySelector('p').innerHTML = v.querySelector('p').innerHTML.replace(/本课程任课教师为:.*?<br>\n/,'')
}
})
if(/*location.href.toLowerCase() == 'https://vip.studypro.club/' ||location.href.toLowerCase() == 'http://vip.studypro.club/' || */location.pathname.toLowerCase() == '/tag/mooc%e7%ad%94%e6%a1%88/' || location.pathname.toLowerCase() == '/tag/%e4%b8%ad%e5%9b%bd%e5%a4%a7%e5%ad%a6mooc%e7%ad%94%e6%a1%88/' || location.pathname.toLowerCase() =='/tag/%e7%bd%91%e8%af%be%e5%b0%8f%e5%b8%ae%e6%89%8b1/' || location.pathname.toLowerCase() =='/category/%e5%b7%b2%e5%ae%8c%e7%bb%93/' || location.pathname.toLowerCase() =='/category/%e6%af%8f%e5%91%a8%e5%91%a8%e6%9c%ab%e6%9b%b4%e6%96%b0/' || location.pathname.toLowerCase() == '/category/%e7%bd%91%e8%af%be%e7%ad%94%e6%a1%88/'|| location.pathname.toLowerCase() == '/author/helper/' || location.pathname.toLowerCase() == '/tag/%e7%bd%91%e8%af%be%e7%ad%94%e6%a1%88/'){
// document.querySelector('#main').setAttribute('style','visibility:hidden')
}
//关闭硕士生英语进阶
if(location.pathname.toLowerCase().indexOf('%e4%b8%ad%e5%9b%bd%e5%a4%a7%e5%ad%a6mooc-%e7%a1%95%e5%a3%ab%e7%94%9f%e8%8b%b1%e8%af%ad%e8%bf%9b%e9%98%b6%e7%94%b5%e5%ad%90%e7%a7%91%e6%8a%80%e5%a4%a7%e5%ad%a6-%e6%9c%80%e6%96%b0%e4%b8%ad/')!=-1){
// document.querySelector('#miporder').innerHTML="<p style='font-size:22px;color:red'>注意:本文内容属于2021年度与2022年度内容不同</p>"
}
if(location.pathname.toLowerCase().indexOf('%e7%9f%a5%e5%88%b0%e7%ad%94%e6%a1%88-%e7%94%b5%e5%ad%90%e7%ba%bf%e8%b7%af%e4%bb%bf%e7%9c%9f%e4%b8%8e%e8%ae%be%e8%ae%a1-%e6%9c%80%e6%96%b0%e4%b8%ad%e5%9b%bd%e5%a4%a7%e5%ad%a6mooc%e6%bb%a1%e5%88%86/')!=-1){
// document.querySelector('#miporder').innerHTML="<p style='font-size:22px;color:red'>注意:本文内容属于2021年度与2023年度内容不同</p>"
}
if(document.getElementById("respond") && !document.getElementById("respond").querySelector('form').action.includes('https')){
document.getElementById("respond").querySelector('form').action = 'https://www.tiku.icu/wp-comments-post.php'
}
//bug修复
if(document.querySelector('.xunhu-btn-green')){
var cilckbtn = getComputedStyle(document.querySelector('.xunhu-btn-green')).backgroundColor
if(cilckbtn != 'rgb(95, 184, 120)' && location.protocol != 'https:'){
location.protocol = 'https:'
}
}
if(document.title.indexOf('知到')== -1){
// document.querySelector('#chinamooc').innerHTML='<span style="font-size:16px;color:red;">如需期末题库请联系QQ 941249048 付费购买</span>'
}
//<ul class="footer-menu"><a href="mqqapi://card/show_pslcard?src_type=internal&version=1&uin=220553738&key=d1f96a76d0f651d741a6b89debc97a8025f19d79c381ee4619beef23db4aa0e8&card_type=group&source=external"><li>加客服QQ 1472602530</li></a><a href="javascript:;" id = "search_answer"><li>搜答案</li></a><a href="http://vip.studypro.club/2021/%e6%9f%a5%e8%ae%a2%e5%8d%95/"><li>查询订单</li></a></ul></nav>
</script>
</footer>
</div>
<script>
/* <![CDATA[ */
var rcGlobal = {
serverUrl :'http://www.tiku.icu',
infoTemp :'%REVIEWER% 在 %POST%',
loadingText :'正在加载',
noCommentsText :'没有任何评论',
newestText :'« 最新的',
newerText :'« 上一页',
olderText :'下一页 »',
showContent :'1',
external :'1',
avatarSize :'32',
avatarPosition :'left',
anonymous :'匿名'
};
/* ]]> */
</script>
<script type="text/javascript" src="http://www.tiku.icu/wp-content/plugins/wp-recentcomments/js/wp-recentcomments-jquery.dev.js?ver=2.2.8" id="wp-recentcomments-jquery-with-lib-js"></script>
<script type="text/javascript" src="https://zz.bdstatic.com/linksubmit/push.js?ver=6.6.1" id="baidu_zz_push-js"></script>
<script type="text/javascript" src="http://www.tiku.icu/wp-content/plugins/scroll-top/assets/js/jquery.scrollUp.min.js" id="scroll-top-js-js"></script>
<script type="text/javascript" src="http://www.tiku.icu/wp-includes/js/comment-reply.min.js?ver=6.6.1" id="comment-reply-js" async="async" data-wp-strategy="async"></script>
<script type="text/javascript" src="http://www.tiku.icu/wp-content/themes/wordstar/assets/js/main.js" id="wordstar-script-js"></script>
<script type="text/javascript" id="githuber-md-js-js-extra">
/* <![CDATA[ */
var md_frontend_settings = {"link_opening_method":"_top"};
/* ]]> */
</script>
<script type="text/javascript" src="http://www.tiku.icu/wp-content/plugins/wp-githuber-md/assets/js/githuber-md-frontend.js?ver=1.9.1" id="githuber-md-js-js"></script>
<script id="scrolltop-custom-js">
jQuery(document).ready(function($){
$.scrollUp({
scrollSpeed: 300,
animation: 'fade',
scrollText: '<span class="scroll-top"><i class="icon-up-open"></i></span>',
scrollDistance: 300,
scrollTarget: ''
});
});
</script>
</body></html><!-- WP Fastest Cache file was created in 0.14514493942261 seconds, on 28-10-24 8:08:01 --><!-- via php -->