René's URL Explorer Experiment


Title: 【JavaScript】【学习心得】学习 JavaScript 第七天 · Issue #11 · paddingme/Learning-JavaScript · GitHub

Open Graph Title: 【JavaScript】【学习心得】学习 JavaScript 第七天 · Issue #11 · paddingme/Learning-JavaScript

X Title: 【JavaScript】【学习心得】学习 JavaScript 第七天 · Issue #11 · paddingme/Learning-JavaScript

Description: 眼看着七天马上就要结束。这个周末你有没有好好休息,有没有 get 什么新技能呢? 如果没有的话,我们快来抓紧时间学点有用的吧。 在上一章中我们已经学习了如何动态的创建标记,今天我们来学习如何充实文档的内容。 充实文档的内容 不应该做什么 渐进增强(progressive enhancement) 从核心的部分开始,即从内容开始。根据内容实现良好的结构,再逐步增强这些内容。 可以通过 CSS 改进呈现效果,通过 DOM 添加各种行为。核心内容应该在刚开始时 编写文档时就成...

Open Graph Description: 眼看着七天马上就要结束。这个周末你有没有好好休息,有没有 get 什么新技能呢? 如果没有的话,我们快来抓紧时间学点有用的吧。 在上一章中我们已经学习了如何动态的创建标记,今天我们来学习如何充实文档的内容。 充实文档的内容 不应该做什么 渐进增强(progressive enhancement) 从核心的部分开始,即从内容开始。根据内容实现良好的结构,再逐步增强这些内容。 可以通过 CSS ...

X Description: 眼看着七天马上就要结束。这个周末你有没有好好休息,有没有 get 什么新技能呢? 如果没有的话,我们快来抓紧时间学点有用的吧。 在上一章中我们已经学习了如何动态的创建标记,今天我们来学习如何充实文档的内容。 充实文档的内容 不应该做什么 渐进增强(progressive enhancement) 从核心的部分开始,即从内容开始。根据内容实现良好的结构,再逐步增强这些内容。 可以通过 CSS ...

Opengraph URL: https://github.com/paddingme/Learning-JavaScript/issues/11

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"【JavaScript】【学习心得】学习 JavaScript 第七天","articleBody":"眼看着七天马上就要结束。这个周末你有没有好好休息,有没有 get 什么新技能呢?\n如果没有的话,我们快来抓紧时间学点有用的吧。\n\n在上一章中我们已经学习了如何动态的创建标记,今天我们来学习如何充实文档的内容。\n# 充实文档的内容\n## 不应该做什么\n### 渐进增强(progressive enhancement)\n\n从核心的部分开始,即从内容开始。根据内容实现良好的结构,再逐步增强这些内容。\n可以通过 CSS 改进呈现效果,通过 DOM 添加各种行为。核心内容应该在刚开始时\n编写文档时就成为文档的组成部分。\n### 平稳退化(graceful degradation)\n\n渐进增强的实现必然支持平稳退化。如果你按照渐进增强的原则去充实内容,你为内容添加的样式和行为就自然支持平稳退化,那些缺乏必要的 CSS 和 DOM 支持的访问者可以访问到你的核心内容。\n## 把“不可见”变为“可见”\n\nalt 属性原本的作用是:在图片不可用(无法显示)时用一段描述文字来解释这个位置的图片。\n## 内容\n\n``` html\n\u003ch1\u003eWhat is the Document Object Model\u003c/h1\u003e\n\u003cp\u003e\n    The \u003cabbr title=\"World Wide Web Consortium\"\u003eW3C\u003c/abbr\u003e defines the \u003cabbr title=\"Document Object Model\"\u003eDOM\u003c/abbr\u003e as:\n\u003c/p\u003e\n\u003cblockquote cite=\"http://www.w3.org/DOM\"\u003e\n    \u003cp\u003e\n        A platform- and language-neutral interface that will allow programs and scripts to dynamically access and update the content,structure and style of documents.\n    \u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cp\u003eIt is an \u003cabbr title=\"Application Programming Interface\"\u003eAPI\u003c/abbr\u003e\nthat cam be used to navigate \u003cabbr title=\"HyperText Markup Language\"\u003eHTML\u003c/abbr\u003e and \u003cabbr title=\"eXtensible Markup Language\"\u003eXML\u003c/abbr\u003e documents.\n\u003c/p\u003e\n```\n\n`\u003cabbr\u003e` 标签的含义是“缩略语(abbreviation)”,它是对单词或短语的简写形式的统称。\n`\u003cacronym\u003e` 标签的含义是被当成一个单词来读的“首字母缩写词”。为避免混淆,在 HTML5中 `\u003cacronym\u003e` 已被 `\u003cabbr\u003e` 取代。\n### HTML?XHTML?HTML5\n\nXHTML 语法更严格,标签字母必须全小写,不可以省略结束标签,所有的标签都必须闭合。\n### CSS\n\n``` css\n    body {\n        font-family: \"Helvetica\",\"Arial\",sans-serif;\n        font-size: 10pt;\n    }\n    abbr {\n        text-decoration: none;\n        border: 0;\n        font-style: normal;\n    }\n```\n### JavaScript\n\n可以用 DOM 改变浏览器的默认行为。\n## 显示 “缩略语列表”\n\n``` javascript\n    function displayAbbreviations() {\n        var abbreviations = document.getElementsByTagName(\"abbr\");\n        if (abbreviations.length \u003c 1) return false;\n        var defs = new Array();\n        for (var i=0; i\u003cabbreviations.length; i++) {\n            var current_abbr =  abbreviations[i];\n            var definition = current_abbr.getAttribute(\"title\");\n            var key = current_abbr.lastChild.nodeValue;\n            defs[key] = definition;\n        }\n    }\n```\n### 创建标记\n\n``` html\n\u003cdl\u003e\n    \u003cdt\u003eTitle 1\u003c/dt\u003e\n    \u003cdd\u003eDescription1\u003c/dd\u003e\n    \u003cdt\u003eTitle 2\u003c/dt\u003e\n    \u003cdd\u003eDescription2\u003c/dd\u003e\n\u003c/dl\u003e\n```\n\n``` javascript\nvar dlist = document.createElement(\"dl\");\n\nfor (key in defs) {\n    var definition = defs[key];\n    var dtitle = document.createElement(\"dt\");\n    var dtitle_text = document.createTextNode(key);\n    dtitle.appendChild(dtitle_text);\n    var ddesc = document.createElement(\"dd\");\n    var ddesc_text = document.createTextNode(definition);\n    ddesc.appendChild(ddesc_text);\n    dlist.appendChild(dtitle);\n    dlist.appendChild(ddesc);\n}\n```\n\n``` javascript\nvar header = document.createElement(\"h2\");\nvar headerText = document.createTextNode(\"Abbreviations\");\nheader.appendChild(headerText);\n```\n\n引用 DOM 标签:\n- DOM Core\n  \n  ```\n  document.getElementsByTagName(\"body\")[0]\n  ```\n- HTML-DOM\n  \n  ```\n  document.body\n  ```\n\n```\ndocument.body.appendChild(dlist);\n```\n\n`displayAbbreviations` 函数:\n\n``` javascript\nfunction displayAbbreviations() {\n        var abbreviations = document.getElementsByTagName(\"abbr\");\n        if (abbreviations.length \u003c 1) return false;\n        var defs = new Array();\n        for (var i=0; i\u003cabbreviations.length; i++) {\n            var current_abbr =  abbreviations[i];\n            var definition = current_abbr.getAttribute(\"title\");\n            var key = current_abbr.lastChild.nodeValue;\n            defs[key] = definition;\n        }\n        var dlist = document.createElement(\"dl\");\n        for (key in defs) {\n            var definition = defs[key];\n            var dtitle = document.createElement(\"dt\");\n            var dtitle_text = document.createTextNode(key);\n            dtitle.appendChild(dtitle_text);\n            var ddesc = document.createElement(\"dd\");\n            var ddesc_text = document.createTextNode(definition);\n            ddesc.appendChild(ddesc_text);\n            dlist.appendChild(dtitle);\n            dlist.appendChild(ddesc);\n        }\n\n        var header = document.createElement(\"h2\");\n        var headerText = document.createTextNode(\"Abbreviations\");\n        header.appendChild(headerText);\n        document.body.appendChild(header);\n        document.body.appendChild(dlist);\n}\n```\n### 一个浏览器“地雷”\n\nIE 浏览器直到 IE7 才支持 `abbr`。\n\n``` javascript\n    for (var i = 0; i \u003c abbreviations.length; i++) {\n        var current_abbr = abbreviations[i];\n        //如果当前元素没有子节点,就立刻开始下一次循环。\n        if (current_abbr.childNodes.length \u003c 1) continue;\n        var definition = current_abbr.getAttribute(\"title\");\n        var key = current_abbr.lastChild.nodeValue;\n        defs[key] = definition;\n    }\n```\n\n``` javascript\n    //创建定义列表\n    var dlist = document.createElement(\"dl\");\n    //遍历定义\n    for (key in defs) {\n        var definition = defs[key];\n        //创建定义标题\n        var dtitle = document.createElement(\"dt\");\n        var dtitle_text = document.createTextNode(key);\n        dtitle.appendChild(dtitle_text);\n        //创建定义描述\n        var ddesc = document.createElement(\"dd\");\n        var ddesc_text = document.createTextNode(definition);\n        ddesc.appendChild(ddesc_text);\n        //把它们添加到定义列表\n        dlist.appendChild(dtitle);\n        dlist.appendChild(ddesc);\n    }\n\n    //对于 dl 没有任何子节点,则立即退出 displayAbbreviations。\n    if (dlist.childNodes.length \u003c 1) return false;\n```\n### 显示“文献来源连接表”\n\n如上只能处理让不识别 `abbr` 的低版本 IE 浏览器 不报错,却不显示我们的自定义列表,肿么办呢?  \n我们让文献以链接形式显示出来。\n\n``` javascript\n    function displayCitations() {\n        if (!document.getElementsByTagName || !document.createElement || !document.createTextNode) return false;\n\n        //取得所有引用\n        var quotes = document.getElementById(\"blockquote\");\n        //遍历所有引用\n        for (var i=0; i\u003cquotes.length; i++) {\n            //如果没有 cite 属性,继续循环\n            if(!qutotes[i].getAttribute(\"cite\")) continue;\n            //保存 cite  属性\n            var url = quotes[i].getAttribute(\"cite\");\n            //取得引用中的所有元素节点\n            var quoteElements = quotes[i].getElementsByTagName(\"*\");\n            //如果没有元素节点,继续循环\n            if (quoteElements.length \u003c 1) continue;\n            //取得引用中最后一个元素节点\n            var elem = quoteElements[quoteElements.length-1];\n            //创建标记\n            var link = document.createElement(\"a\");\n            var link_text = document.createTextNode(\"source\");\n            link.appendChild(link_text);\n            link.setAttribute(\"href\",url);\n            var siperscript = document.createElement(\"sup\");\n            siperscript.appendChild(link);\n            //把标记添加到引用中的最后一个元素节点\n            elem.appendChild(siperscript);\n        }\n    }\n```\n## 显示快捷键菜单\n\naccess 属性可以把一个元素(如链接)与肩哦按上的某个特定按键关联在一起,一般来说,在适应于 Winodws 的系统的浏览器里,快捷键的用法是在键盘上同时按下 Alt 键和特定按键,在适用于 Mac 系统的浏览器里,快捷键的用法是同时按下 Ctrl 键和特定按键。\n\n\u003e 设置太多的快捷键会适得其反,他们会与浏览器内建的快捷方式发生冲突\n\n一些基本的快捷键都有约定俗成的设置方法,详细的可参考: http://www.clagnut.com/blog/193/\n- accesskey=\"1\"对应着一个 “返回到本网站主页” 的链接;\n- accesskey=\"2\"对应着一个 “后退到前一个页面” 的链接;\n- accesskey=\"4\"对应着一个 “打开本网站的搜索表单/页面” 的链接;\n- accesskey=\"9\"对应着一个 “本网站联系方法” 的链接;\n- accesskey=\"0\"对应着一个 “查看本网站的快捷键清单” 的链接;\n\n``` html\n\u003cul id=\"navigation\"\u003e\n    \u003cli\u003e\u003ca href=\"index.html\" accesskey=\"1\"\u003eHome\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"search.html\" accesskey=\"4\"\u003eSearch\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"contact.html\" accesskey=\"9\"\u003eContact\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n```\n\n来创建一份快捷键清单\n\n``` javascript\n    function displayAccesskeys() {\n        if (!document.getElementsByTagName || !document.createTextNode || !document.createElement) return false;\n        //取得文章当中的所有链接\n        var links = document.getElementsByTagName(\"a\");\n        //创建一个数组,保存快捷键\n        var akeys = new Array();\n        //遍历链接\n        for (var i=0; i\u003clinks.length; i++) {\n            var current_link = links[i];\n            //如果没有 accesskey 属性,继续循环\n            if (!links[i].getAttribute(\"accesskey\")) continue;\n            //取得 accesskey 的值\n            var key = current_link.getAttribute(\"accesskey\");\n            // 取得链接文本\n            var text = current_link.lastChild.nodeValue;\n            //添加到数组\n            akeys[key] = text;\n        }\n\n        //创建列表\n        var list = document.createElement(\"ul\");\n        //遍历快捷键\n        for ( key in akeys) {\n            var text = akeys[key];\n            //创建放到列表中的字符串\n            var str = key + \":\" +text;\n            //创建列表象\n            var item = document.createElement(\"li\");\n            var item_text = document.createTextNode(str);\n            item.appendChild(item_text);\n            //把列表创建到列表中\n            list.appendChild(item);\n        }\n\n        //创建标题\n        var header = document.createElement(\"h1\");\n        var header_text = document.createTextNode(\"Acceskeys\");\n        header.appendChild(header_text);\n        //把标题添加到主体上\n        document.body.appendChild(header);\n        //把列表放到主体上\n        document.body.appendChild(list);\n    }\n\n    addLoadEvent(displayAccesskeys);\n```\n\n在线 DEMO 地址:[codepen](http://codepen.io/paddingme/pen/XJJGjv) or [github](https://github.com/paddingme/Learning-JavaScript/blob/master/Demo/1-8.html)。\n\n好了,今天的学习就到了,明天周一了,请记得定闹钟!\n","author":{"url":"https://github.com/paddingme","@type":"Person","name":"paddingme"},"datePublished":"2014-11-23T14:04:19.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/11/Learning-JavaScript/issues/11"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:2a84d7b7-e31b-52e4-bbeb-0da17db1859b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8728:26D6B:2A5B5E3:3D7F2AF:6A60F00B
html-safe-nonce823510c4f2c6fd342255a401b98856a9b4fa25c537b0ad7765ee07ddc0d82a79
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NzI4OjI2RDZCOjJBNUI1RTM6M0Q3RjJBRjo2QTYwRjAwQiIsInZpc2l0b3JfaWQiOiIxNzM4NTYxNjgxODQzMzUxNTYzIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacc0bea46e05128ede8a570b8060bcea74effc1ff9cac6fbdd988a2cd705be8169
hovercard-subject-tagissue:49826521
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/paddingme/Learning-JavaScript/11/issue_layout
twitter:imagehttps://opengraph.githubassets.com/ab3c0510076266db571d1d467257b3d2980906e68cdce1ab0b35e82d1b9160f2/paddingme/Learning-JavaScript/issues/11
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/ab3c0510076266db571d1d467257b3d2980906e68cdce1ab0b35e82d1b9160f2/paddingme/Learning-JavaScript/issues/11
og:image:alt眼看着七天马上就要结束。这个周末你有没有好好休息,有没有 get 什么新技能呢? 如果没有的话,我们快来抓紧时间学点有用的吧。 在上一章中我们已经学习了如何动态的创建标记,今天我们来学习如何充实文档的内容。 充实文档的内容 不应该做什么 渐进增强(progressive enhancement) 从核心的部分开始,即从内容开始。根据内容实现良好的结构,再逐步增强这些内容。 可以通过 CSS ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamepaddingme
hostnamegithub.com
expected-hostnamegithub.com
None3ba36a464b9464992131f4003292a219fc87f92404b0dbe3fd1ef07f11102d0f
turbo-cache-controlno-preview
go-importgithub.com/paddingme/Learning-JavaScript git https://github.com/paddingme/Learning-JavaScript.git
octolytics-dimension-user_id5771087
octolytics-dimension-user_loginpaddingme
octolytics-dimension-repository_id25473884
octolytics-dimension-repository_nwopaddingme/Learning-JavaScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id25473884
octolytics-dimension-repository_network_root_nwopaddingme/Learning-JavaScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release2cc5e4f897a27632dd600edfec4c737bea2f8338
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/paddingme/Learning-JavaScript/issues/11#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpaddingme%2FLearning-JavaScript%2Fissues%2F11
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpaddingme%2FLearning-JavaScript%2Fissues%2F11
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=paddingme%2FLearning-JavaScript
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/11
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/11
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/11
paddingme https://github.com/paddingme
Learning-JavaScripthttps://github.com/paddingme/Learning-JavaScript
Notifications https://github.com/login?return_to=%2Fpaddingme%2FLearning-JavaScript
Fork 13 https://github.com/login?return_to=%2Fpaddingme%2FLearning-JavaScript
Star 28 https://github.com/login?return_to=%2Fpaddingme%2FLearning-JavaScript
Code https://github.com/paddingme/Learning-JavaScript
Issues 30 https://github.com/paddingme/Learning-JavaScript/issues
Pull requests 0 https://github.com/paddingme/Learning-JavaScript/pulls
Actions https://github.com/paddingme/Learning-JavaScript/actions
Projects https://github.com/paddingme/Learning-JavaScript/projects
Wiki https://github.com/paddingme/Learning-JavaScript/wiki
Security and quality 0 https://github.com/paddingme/Learning-JavaScript/security
Insights https://github.com/paddingme/Learning-JavaScript/pulse
Code https://github.com/paddingme/Learning-JavaScript
Issues https://github.com/paddingme/Learning-JavaScript/issues
Pull requests https://github.com/paddingme/Learning-JavaScript/pulls
Actions https://github.com/paddingme/Learning-JavaScript/actions
Projects https://github.com/paddingme/Learning-JavaScript/projects
Wiki https://github.com/paddingme/Learning-JavaScript/wiki
Security and quality https://github.com/paddingme/Learning-JavaScript/security
Insights https://github.com/paddingme/Learning-JavaScript/pulse
【JavaScript】【学习心得】学习 JavaScript 第七天https://github.com/paddingme/Learning-JavaScript/issues/11#top
Mu-Help-Planhttps://github.com/paddingme/Learning-JavaScript/issues?q=state%3Aopen%20label%3A%22Mu-Help-Plan%22
https://github.com/paddingme
paddingmehttps://github.com/paddingme
on Nov 23, 2014https://github.com/paddingme/Learning-JavaScript/issues/11#issue-49826521
http://www.clagnut.com/blog/193/http://www.clagnut.com/blog/193/
codepenhttp://codepen.io/paddingme/pen/XJJGjv
githubhttps://github.com/paddingme/Learning-JavaScript/blob/master/Demo/1-8.html
Mu-Help-Planhttps://github.com/paddingme/Learning-JavaScript/issues?q=state%3Aopen%20label%3A%22Mu-Help-Plan%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.