获取内容资料
Java编程

慕课网初识javascript

js输出window.alert 警告框document.write 写到HTML文档中innerHTML 写到HTML元素console.log 写到浏览器的控制台js输出

慕课网初识javascript

js语句与注释分号javaScript 代码javaScript 语句标识符代码块单行和多行注释js语句与注释js数据类型字符串(String)数字(Number)布尔(Boolean)数组(Array)对象(Object)空(Null)未定义(Undefined)js数据类型js变量变量必须以字母开头变量也能以 $ 和 _ 符号开头(不过我们不推荐这么做)变量名称对大小写敏感(y 和 Y 是不同的变量)js函数函数是由事件驱动的或者当它被调用时执行的可重复使用的代码块function a( 参数 ) 声明会前置var a = function( 参数 ) 匿名函数函数中的 returnjs函数运算符赋值运算符 = += -= 等算术运算符 + – * / 等字符串的 + 运算符js运算符js比较与逻辑运算符< 小于> 大于**== 等于 1 == ‘1’ **=== 绝对等于(值和类型均相等)!= 不等于&& and。

js杈撳嚭window.alert 璀﹀憡妗?/li>document.write 鍐欏埌HTML鏂囨。涓?/li>innerHTML 鍐欏埌HTML鍏冪礌console.log 鍐欏埌娴忚鍣ㄧ殑鎺у埗鍙?/li>js杈撳嚭

js璇彞涓庢敞閲?/h2>鍒嗗彿javaScript 浠g爜javaScript 璇彞鏍囪瘑绗?/li>浠g爜鍧?/li>鍗曡鍜屽琛屾敞閲?/li>js璇彞涓庢敞閲?lt;/title></head><body><script type="text/javascript">/**- 鍒嗗彿- javaScript 浠g爜- javaScript 璇彞鏍囪瘑绗?var if for- 浠g爜鍧? - 鍗曡鍜屽琛屾敞閲? **/var a=1// 浠g爜鍧? function b{var c=1;var d=2;}//鍗曡娉ㄩ噴/*澶氳娉ㄩ噴*/</script></body></html>js鏁版嵁绫诲瀷瀛楃涓诧紙String锛?/li>鏁板瓧锛圢umber锛?/li>甯冨皵锛圔oolean锛?/li>鏁扮粍锛圓rray锛?/li>瀵硅薄锛圤bject锛?/li>绌猴紙Null锛?/li>鏈畾涔夛紙Undefined锛?/li><!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>js鏁版嵁绫诲瀷js鍙橀噺鍙橀噺蹇呴』浠ュ瓧姣嶅紑澶?/li>鍙橀噺涔熻兘浠?$ 鍜?_ 绗﹀彿寮€澶达紙涓嶈繃鎴戜滑涓嶆帹鑽愯繖涔堝仛锛?/li>鍙橀噺鍚嶇О瀵瑰ぇ灏忓啓鏁忔劅锛坹 鍜?Y 鏄笉鍚岀殑鍙橀噺锛?/li>js鍑芥暟鍑芥暟鏄敱浜嬩欢椹卞姩鐨勬垨鑰呭綋瀹冭璋冪敤鏃舵墽琛岀殑鍙噸澶嶄娇鐢ㄧ殑浠g爜鍧?/li>function a( 鍙傛暟 ) 澹版槑浼氬墠缃?/li>var a = function( 鍙傛暟 ) 鍖垮悕鍑芥暟鍑芥暟涓殑 returnjs鍑芥暟杩愮畻绗?/h2>璧嬪€艰繍绠楃 = += -= 绛?/li>绠楁湳杩愮畻绗?+ – * / 绛?/li>瀛楃涓茬殑 + 杩愮畻绗?/li>js杩愮畻绗?lt;/title></head><body><script type="text/javascript">/ 璧嬪€艰繍绠楃 = += -= 绛? 绠楁湳杩愮畻绗? + - * / 绛? 瀛楃涓茬殑 + 杩愮畻绗?*/var a = 1; //璧嬪€? a += 3; // a = a + 3;console.log(a); //4var b = 2;b = b * 3;console.log(b); //6var c = 'hello';var d = 'world';var e = c + d;console.log(e); //helloword</script></body></html>js姣旇緝涓庨€昏緫杩愮畻绗?/h2>< 灏忎簬> 澶т簬**== 绛変簬 1 == 鈥?鈥?**=== 缁濆绛変簬锛堝€煎拰绫诲瀷鍧囩浉绛夛級!= 涓嶇瓑浜?/li>&& and。</p> <p>var arr = [1,2,3,4,5];console.log(arr.filter(value => value%2 == 0));。</p> <p>var arr = [1,2]; var arr1 =arr; arr = [1,3]; document.write(arr1)。</p> <p>* 解构:快捷,方便** 对象解构*/{var expense = {type: “es6”,amount: “45”};//1.ES5// var type = expense.type;// var amount = expense.amount;// console.log(type, amount); //output: es6 45//2.ES6const { type, amount, abc } = expense;console.log(type, amount, abc); //output: es6 45 undefined}{var saveFiled = {extension: “jpg”,name: “girl”,size: 14040};//ES5function fileSammary1(file) {return `${file.name}.${file.extension}的总大小是${file.size};`}//ES6//名字不能变,位置可以乱function fileSammary2({ name, size, extension }) {return `${name}.${extension}的总大小是${size};`}console.log(fileSammary1(saveFiled)); //output: girl.jpg的总大小是14040;console.log(fileSammary2(saveFiled)); //output: girl.jpg的总大小是14040;}数组的解构。</p> <p>obj.a ===undefined ,因为 undefined == null 值为true// 这是 JQuery 中推荐的写法, 其余情况全部用 === (避免代码风险有代码洁癖)}3. JS 中有哪些内置函数4. JS 变量按照存储方式区分为哪些类型,并描述其特点5. 如何理解 JSON知识点变量类型:值类型 和 引用类型(指针)引用类型包括: 数组 函数 对象;引用类型公共空间,是指针var a=100;var b=a;a=200;console.log(b) //100var a={age:20};var b=a;b.age=21;console.log(a.age) //21typeof只能区分值类型的详细类型,对引用类型无能为力,但可以区分出函数来typeof undefined;//undefinedtypeof ‘abc’;//stringtypeof 123;//numbertypeof true;//booleantypeof ;//objecttypeof ;//objecttypeof null;//objecttypeof console.log//function强制类型转换(值类型的计算)。</p> <p>var obj = ;obj.log = console.log;obj.log.call(console,this);该代码在浏览器中执行,输出的日志结果是什么?undefinedwindowconsoleobj。</p> </div><!-- .entry-content --> </article><!-- #post-4168 --> <div class="clearfix"></div> <ul class="default-theme-post-navigation"> <li class="theme-nav-previous"><a href="https://www.dershi.cn/4166.html" rel="prev"><span class="meta-nav">←</span> 圣思园精通springboot</a></li> <li class="theme-nav-next"><a href="https://www.dershi.cn/4170.html" rel="next">开课吧大数据全站分析师课程 <span class="meta-nav">→</span></a></li> </ul> <div class="clearfix"></div> <h3 class='comment-reply-title'>Similar Posts</h3> <div class="mb-related-posts mb-simple-featured-posts mb-simple-featured-posts-wrap row"> <article class="mb-featured-article col-md-4 px-lg-3 post"> <a class="post-thumbnail" href="https://www.dershi.cn/3230.html" aria-hidden="true" tabindex="-1"> <img width="450" height="300" src="https://www.dershi.cn/wp-content/uploads/cxfycpc9.jpg" class="attachment-magazinebook-featured-image-medium size-magazinebook-featured-image-medium wp-post-image" alt="" loading="lazy" srcset="https://www.dershi.cn/wp-content/uploads/cxfycpc9.jpg 450w, https://www.dershi.cn/wp-content/uploads/cxfycpc9-300x200.jpg 300w" sizes="(max-width: 450px) 100vw, 450px" /> </a> <span class="cat-links"><a href="https://www.dershi.cn/java" rel="category tag">Java编程</a></span> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/3230.html" rel="bookmark">传智播客javaee课后题答案</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-featured-article col-md-4 px-lg-3 post"> <a class="post-thumbnail" href="https://www.dershi.cn/4274.html" aria-hidden="true" tabindex="-1"> <img width="450" height="300" src="https://www.dershi.cn/wp-content/uploads/kqqzpf1s.jpg" class="attachment-magazinebook-featured-image-medium size-magazinebook-featured-image-medium wp-post-image" alt="" loading="lazy" srcset="https://www.dershi.cn/wp-content/uploads/kqqzpf1s.jpg 450w, https://www.dershi.cn/wp-content/uploads/kqqzpf1s-300x200.jpg 300w" sizes="(max-width: 450px) 100vw, 450px" /> </a> <span class="cat-links"><a href="https://www.dershi.cn/java" rel="category tag">Java编程</a></span> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/4274.html" rel="bookmark">上海javaee就业班学费</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-featured-article col-md-4 px-lg-3 post"> <a class="post-thumbnail" href="https://www.dershi.cn/3012.html" aria-hidden="true" tabindex="-1"> <img width="450" height="300" src="https://www.dershi.cn/wp-content/uploads/isqpeq6x.jpg" class="attachment-magazinebook-featured-image-medium size-magazinebook-featured-image-medium wp-post-image" alt="" loading="lazy" srcset="https://www.dershi.cn/wp-content/uploads/isqpeq6x.jpg 450w, https://www.dershi.cn/wp-content/uploads/isqpeq6x-300x200.jpg 300w" sizes="(max-width: 450px) 100vw, 450px" /> </a> <span class="cat-links"><a href="https://www.dershi.cn/java" rel="category tag">Java编程</a></span> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/3012.html" rel="bookmark">成都java培训就业班</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> </div> <div id="comments" class="comments-area"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">发表评论 <small><a rel="nofollow" id="cancel-comment-reply-link" href="/4168.html#respond" style="display:none;">取消回复</a></small></h3><form action="https://www.dershi.cn/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">邮箱地址不会被公开。</span> 必填项已用<span class="required">*</span>标注</p><p class="comment-form-comment"><label for="comment">评论</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="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" required='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" required='required' /></p> <p class="comment-form-url"><label for="url">站点</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" /></p> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">在此浏览器中保存我的姓名、电子邮件和站点地址。</label></p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="发表评论" /> <input type='hidden' name='comment_post_ID' value='4168' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p></form> </div><!-- #respond --> </div><!-- #comments --> </main><!-- #main --> </div><!-- #primary --> <div class="col-md-3 px-lg-3 "> <aside id="secondary" class="widget-area"> <section id="search-2" class="widget widget_search"><h5 class="widget-title">快速搜索</h5><form action="https://www.dershi.cn/" class="search-form searchform clearfix" method="get"> <div class="search-wrap"> <input type="text" placeholder="Search" class="s field" name="s"><button class="search-icon" type="submit"><i class="fas fa-search"></i></button> </div> </form><!-- .searchform --> </section><section id="tag_cloud-2" class="widget widget_tag_cloud"><h5 class="widget-title">标签</h5><div class="tagcloud"><a href="https://www.dershi.cn/tag/%e4%b8%bb%e9%a2%98" class="tag-cloud-link tag-link-1854 tag-link-position-1" style="font-size: 8.8pt;" aria-label="主题 (33个项目)">主题</a> <a href="https://www.dershi.cn/tag/%e4%bc%81%e4%b8%9a%e7%ba%a7" class="tag-cloud-link tag-link-1130 tag-link-position-2" style="font-size: 10.666666666667pt;" aria-label="企业级 (64个项目)">企业级</a> <a href="https://www.dershi.cn/tag/%e5%85%8d%e7%ad%be" class="tag-cloud-link tag-link-1853 tag-link-position-3" style="font-size: 8.4666666666667pt;" aria-label="免签 (29个项目)">免签</a> <a href="https://www.dershi.cn/tag/%e5%85%a8%e6%a0%88" class="tag-cloud-link tag-link-34 tag-link-position-4" style="font-size: 8.8pt;" aria-label="全栈 (33个项目)">全栈</a> <a href="https://www.dershi.cn/tag/%e5%85%ad%e5%86%8c" class="tag-cloud-link tag-link-518 tag-link-position-5" style="font-size: 9.8pt;" aria-label="六册 (47个项目)">六册</a> <a href="https://www.dershi.cn/tag/%e5%8f%8c%e7%ab%af" class="tag-cloud-link tag-link-1797 tag-link-position-6" style="font-size: 8.8666666666667pt;" aria-label="双端 (34个项目)">双端</a> <a href="https://www.dershi.cn/tag/%e5%8f%a4%e8%af%97%e8%af%8d" class="tag-cloud-link tag-link-602 tag-link-position-7" style="font-size: 8pt;" aria-label="古诗词 (25个项目)">古诗词</a> <a href="https://www.dershi.cn/tag/%e5%90%88%e9%9b%86" class="tag-cloud-link tag-link-338 tag-link-position-8" style="font-size: 9.2pt;" aria-label="合集 (38个项目)">合集</a> <a href="https://www.dershi.cn/tag/%e5%9b%9b%e5%86%8c" class="tag-cloud-link tag-link-548 tag-link-position-9" style="font-size: 8.6666666666667pt;" aria-label="四册 (31个项目)">四册</a> <a href="https://www.dershi.cn/tag/%e5%ae%8c%e6%95%b4%e7%89%88" class="tag-cloud-link tag-link-56 tag-link-position-10" style="font-size: 11.6pt;" aria-label="完整版 (88个项目)">完整版</a> <a href="https://www.dershi.cn/tag/%e5%ae%9e%e6%88%98" class="tag-cloud-link tag-link-1220 tag-link-position-11" style="font-size: 8.7333333333333pt;" aria-label="实战 (32个项目)">实战</a> <a href="https://www.dershi.cn/tag/%e5%ae%9e%e6%93%8d" class="tag-cloud-link tag-link-1670 tag-link-position-12" style="font-size: 9pt;" aria-label="实操 (35个项目)">实操</a> <a href="https://www.dershi.cn/tag/%e5%bb%ba%e9%80%a0%e5%b8%88" class="tag-cloud-link tag-link-1793 tag-link-position-13" style="font-size: 8.7333333333333pt;" aria-label="建造师 (32个项目)">建造师</a> <a href="https://www.dershi.cn/tag/%e5%be%ae%e4%bf%a1" class="tag-cloud-link tag-link-1176 tag-link-position-14" style="font-size: 10pt;" aria-label="微信 (50个项目)">微信</a> <a href="https://www.dershi.cn/tag/%e5%bf%ab%e6%89%8b" class="tag-cloud-link tag-link-1194 tag-link-position-15" style="font-size: 8.8666666666667pt;" aria-label="快手 (34个项目)">快手</a> <a href="https://www.dershi.cn/tag/%e6%83%85%e5%95%86" class="tag-cloud-link tag-link-356 tag-link-position-16" style="font-size: 8.2666666666667pt;" aria-label="情商 (27个项目)">情商</a> <a href="https://www.dershi.cn/tag/%e6%8a%96%e9%9f%b3" class="tag-cloud-link tag-link-1197 tag-link-position-17" style="font-size: 12.066666666667pt;" aria-label="抖音 (103个项目)">抖音</a> <a href="https://www.dershi.cn/tag/%e6%8b%89%e5%8b%be" class="tag-cloud-link tag-link-1131 tag-link-position-18" style="font-size: 12.466666666667pt;" aria-label="拉勾 (120个项目)">拉勾</a> <a href="https://www.dershi.cn/tag/%e6%8b%bc%e8%af%bb" class="tag-cloud-link tag-link-188 tag-link-position-19" style="font-size: 11.466666666667pt;" aria-label="拼读 (84个项目)">拼读</a> <a href="https://www.dershi.cn/tag/%e6%8f%92%e4%bb%b6" class="tag-cloud-link tag-link-30 tag-link-position-20" style="font-size: 8.5333333333333pt;" aria-label="插件 (30个项目)">插件</a> <a href="https://www.dershi.cn/tag/%e6%8f%92%e7%94%bb" class="tag-cloud-link tag-link-28 tag-link-position-21" style="font-size: 12pt;" aria-label="插画 (101个项目)">插画</a> <a href="https://www.dershi.cn/tag/%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-1313 tag-link-position-22" style="font-size: 9.2pt;" aria-label="教程 (38个项目)">教程</a> <a href="https://www.dershi.cn/tag/%e6%97%a0%e5%af%86" class="tag-cloud-link tag-link-1592 tag-link-position-23" style="font-size: 10pt;" aria-label="无密 (50个项目)">无密</a> <a href="https://www.dershi.cn/tag/%e6%9e%81%e5%ae%a2" class="tag-cloud-link tag-link-1661 tag-link-position-24" style="font-size: 9.8pt;" aria-label="极客 (47个项目)">极客</a> <a href="https://www.dershi.cn/tag/%e6%9e%b6%e6%9e%84%e5%b8%88" class="tag-cloud-link tag-link-1183 tag-link-position-25" style="font-size: 8.4666666666667pt;" aria-label="架构师 (29个项目)">架构师</a> <a href="https://www.dershi.cn/tag/%e6%b6%82%e8%89%b2" class="tag-cloud-link tag-link-525 tag-link-position-26" style="font-size: 9.4pt;" aria-label="涂色 (41个项目)">涂色</a> <a href="https://www.dershi.cn/tag/%e6%ba%90%e7%a0%81" class="tag-cloud-link tag-link-1126 tag-link-position-27" style="font-size: 17.333333333333pt;" aria-label="源码 (639个项目)">源码</a> <a href="https://www.dershi.cn/tag/%e7%89%b9%e8%ae%ad%e8%90%a5" class="tag-cloud-link tag-link-1150 tag-link-position-28" style="font-size: 9.2pt;" aria-label="特训营 (38个项目)">特训营</a> <a href="https://www.dershi.cn/tag/%e7%94%b5%e5%95%86" class="tag-cloud-link tag-link-1148 tag-link-position-29" style="font-size: 12.866666666667pt;" aria-label="电商 (136个项目)">电商</a> <a href="https://www.dershi.cn/tag/%e7%99%be%e5%ba%a6%e7%bd%91" class="tag-cloud-link tag-link-51 tag-link-position-30" style="font-size: 22pt;" aria-label="百度网 (3,198个项目)">百度网</a> <a href="https://www.dershi.cn/tag/%e7%9b%b4%e6%92%ad" class="tag-cloud-link tag-link-17 tag-link-position-31" style="font-size: 8.8666666666667pt;" aria-label="直播 (34个项目)">直播</a> <a href="https://www.dershi.cn/tag/%e7%a7%91%e6%99%ae%e7%9f%a5%e8%af%86" class="tag-cloud-link tag-link-526 tag-link-position-32" style="font-size: 9pt;" aria-label="科普知识 (35个项目)">科普知识</a> <a href="https://www.dershi.cn/tag/%e7%a8%8b%e5%ba%8f" class="tag-cloud-link tag-link-1476 tag-link-position-33" style="font-size: 9pt;" aria-label="程序 (35个项目)">程序</a> <a href="https://www.dershi.cn/tag/%e7%b2%be%e8%ae%b2" class="tag-cloud-link tag-link-201 tag-link-position-34" style="font-size: 9.8666666666667pt;" aria-label="精讲 (48个项目)">精讲</a> <a href="https://www.dershi.cn/tag/%e7%bb%83%e4%b9%a0%e5%86%8c" class="tag-cloud-link tag-link-290 tag-link-position-35" style="font-size: 14.266666666667pt;" aria-label="练习册 (223个项目)">练习册</a> <a href="https://www.dershi.cn/tag/%e7%bb%87%e6%a2%a6" class="tag-cloud-link tag-link-2086 tag-link-position-36" style="font-size: 10.2pt;" aria-label="织梦 (54个项目)">织梦</a> <a href="https://www.dershi.cn/tag/%e7%bb%98%e6%9c%ac" class="tag-cloud-link tag-link-535 tag-link-position-37" style="font-size: 8.1333333333333pt;" aria-label="绘本 (26个项目)">绘本</a> <a href="https://www.dershi.cn/tag/%e8%8b%b1%e5%8f%8c%e8%af%ad" class="tag-cloud-link tag-link-628 tag-link-position-38" style="font-size: 8.3333333333333pt;" aria-label="英双语 (28个项目)">英双语</a> <a href="https://www.dershi.cn/tag/%e8%8b%b1%e8%af%ad" class="tag-cloud-link tag-link-90 tag-link-position-39" style="font-size: 10.933333333333pt;" aria-label="英语 (69个项目)">英语</a> <a href="https://www.dershi.cn/tag/%e8%a7%86%e9%a2%91" class="tag-cloud-link tag-link-461 tag-link-position-40" style="font-size: 10.466666666667pt;" aria-label="视频 (59个项目)">视频</a> <a href="https://www.dershi.cn/tag/%e8%a7%86%e9%a2%91%e6%95%99%e7%a8%8b" class="tag-cloud-link tag-link-257 tag-link-position-41" style="font-size: 10.2pt;" aria-label="视频教程 (54个项目)">视频教程</a> <a href="https://www.dershi.cn/tag/%e8%ae%ad%e7%bb%83%e8%90%a5" class="tag-cloud-link tag-link-216 tag-link-position-42" style="font-size: 10.933333333333pt;" aria-label="训练营 (69个项目)">训练营</a> <a href="https://www.dershi.cn/tag/%e8%af%be%e7%a8%8b" class="tag-cloud-link tag-link-704 tag-link-position-43" style="font-size: 9pt;" aria-label="课程 (35个项目)">课程</a> <a href="https://www.dershi.cn/tag/%e8%bf%9b%e9%98%b6" class="tag-cloud-link tag-link-904 tag-link-position-44" style="font-size: 11.533333333333pt;" aria-label="进阶 (87个项目)">进阶</a> <a href="https://www.dershi.cn/tag/%e9%9f%b3%e9%a2%91%e6%a0%bc%e5%bc%8f" class="tag-cloud-link tag-link-510 tag-link-position-45" style="font-size: 13.733333333333pt;" aria-label="音频格式 (186个项目)">音频格式</a></div> </section><section id="magazinebook_recent_posts_style_1_widget-6" class="widget mb-widget-recent-posts-style-1"> <div class="mb-recent-posts-style-1"> <div class="mb-recent-style-1-title"> <h5 class="widget-title">最新文章</h5> </div> <div class="mb-recent-posts-style-1-wrap"> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28584.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/8257797113910311.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28584.html" rel="bookmark">高效迭代·职业规划篇 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28582.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/3359388199023612.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28582.html" rel="bookmark">人体及动物生理学_北京师范大学-主讲:孙颖郁 39讲 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28580.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/5385741337537581.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28580.html" rel="bookmark">产品36计 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28578.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/5306995361790242.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28578.html" rel="bookmark">组织学与胚胎学_哈尔滨医科大学-主讲:金连弘 46讲 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28576.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/8762218274868161.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28576.html" rel="bookmark">思辰写作二阶 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28575.html" rel="bookmark">【后期菌】录音&混音资料包 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28574.html" rel="bookmark">潘赟写作进阶提升 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28572.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/7095962894992121.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28572.html" rel="bookmark">Niko小烨 职业吉他实用套路手册:多风格伴奏篇 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <a class="post-thumbnail" href="https://www.dershi.cn/28570.html" aria-hidden="true" tabindex="-1"> <img width="1" height="1" src="https://www.dershi.cn/wp-content/uploads/9163412960925931.jpg" class="attachment-magazinebook-featured-image-small size-magazinebook-featured-image-small wp-post-image" alt="" loading="lazy" /> </a> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28570.html" rel="bookmark">合成设计套路 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28569.html" rel="bookmark">你没听过的人类居住简史 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> <article class="mb-recent-article mb-rt-1-small post d-flex"> <header class="entry-header"> <h3 class="entry-title"><a href="https://www.dershi.cn/28568.html" rel="bookmark">【汤小小】轻松高效写作 百度网盘下载</a></h3> <div class="entry-meta"> </div><!-- .entry-meta --> </header><!-- .entry-header --> </article> </div> </div> </section></aside><!-- #secondary --> </div> </div> </div> </div><!-- #content --> <footer id="colophon" class="site-footer"> <div class="container"> <div class="row"> <div class="col-md-12 text-center"> <div class="site-info"> <span>德师学习网 本站内容搜集整理自网络,如有侵权,请联系删除,联系邮箱:666999@mail.com </span> <span class="sep"> | </span> <span><a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">吉ICP备16006688号</a></span> <span class="sep"> | </span> <span><a href="https://www.dershi.cn/wp-sitemap.xml">sitemap</a></span> </div><!-- .site-info --> </div> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <script type='text/javascript' src='https://www.dershi.cn/wp-content/themes/magazinebook/js/navigation.js?ver=1.0.9' id='magazinebook-navigation-js'></script> <script type='text/javascript' src='https://www.dershi.cn/wp-content/themes/magazinebook/js/skip-link-focus-fix.js?ver=1.0.9' id='magazinebook-skip-link-focus-fix-js'></script> <script type='text/javascript' src='https://www.dershi.cn/wp-content/themes/magazinebook/js/jquery.easy-ticker.js?ver=3.1.0' id='magazinebook-news-ticker-js'></script> <script type='text/javascript' src='https://www.dershi.cn/wp-content/themes/magazinebook/js/splide.min.js?ver=2.3.1' id='splide-js-js'></script> <script type='text/javascript' src='https://www.dershi.cn/wp-content/themes/magazinebook/js/theme.js?ver=1.0.9' id='magazinebook-theme-js-js'></script> <script type='text/javascript' src='https://www.dershi.cn/wp-includes/js/comment-reply.min.js?ver=5.6.13' id='comment-reply-js'></script> <script type='text/javascript' src='https://www.dershi.cn/wp-includes/js/wp-embed.min.js?ver=5.6.13' id='wp-embed-js'></script> <div style="display:none;"> <script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script> <script>LA.init({id: "JeVbZWR8T1rWUycs",ck: "JeVbZWR8T1rWUycs"})</script> </div> </body> </html>