René's URL Explorer Experiment


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

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

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

Description: 已经坚持了一周的学习,学到了不少 DOM 的基础知识,对一些基本概念也有了深入里概念,今天主要学习如何利用 DOM 技术去获取(读)和设置(写)CSS 信息。 三位一体的网页 结构层( structural layer) :由 HTML 或 XHTML 之类的标记语言负责创建。标签( tag ),也就是那些出现在尖括号里的单词,对网页内容的语义含义做出了描述。 行为层( presentation layer):由 CSS 负责完成。 CSS 描述页面内容应该如何呈现。 ...

Open Graph Description: 已经坚持了一周的学习,学到了不少 DOM 的基础知识,对一些基本概念也有了深入里概念,今天主要学习如何利用 DOM 技术去获取(读)和设置(写)CSS 信息。 三位一体的网页 结构层( structural layer) :由 HTML 或 XHTML 之类的标记语言负责创建。标签( tag ),也就是那些出现在尖括号里的单词,对网页内容的语义含义做出了描述。 行为层( presentati...

X Description: 已经坚持了一周的学习,学到了不少 DOM 的基础知识,对一些基本概念也有了深入里概念,今天主要学习如何利用 DOM 技术去获取(读)和设置(写)CSS 信息。 三位一体的网页 结构层( structural layer) :由 HTML 或 XHTML 之类的标记语言负责创建。标签( tag ),也就是那些出现在尖括号里的单词,对网页内容的语义含义做出了描述。 行为层( presentati...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"【JavaScript】【学习心得】学习 JavaScript 第八天","articleBody":"已经坚持了一周的学习,学到了不少 DOM 的基础知识,对一些基本概念也有了深入里概念,今天主要学习如何利用 DOM 技术去获取(读)和设置(写)CSS 信息。\n## 三位一体的网页\n- 结构层( structural layer) :由 HTML 或 XHTML 之类的标记语言负责创建。标签( tag ),也就是那些出现在尖括号里的单词,对网页内容的语义含义做出了描述。\n- 行为层( presentation layer):由 CSS 负责完成。 CSS 描述页面内容应该如何呈现。\n- 表现层( behavior layer):负责内容应该如何响应事件这一问题,这是 JavaScript 语言 和 DOM 主宰的领域。\n\n===》结构、行为、表现 分离。\n## style 属性\n\n文档中的每个元素都是一个对象,每个对象由着各种各样的属性。\n- 有一些属性告诉我们元素在节点树上的位置信息,即各节点之间关系信息:`parentNode`,`nextSibling`,`previousSibling`,`childNodes`,`firstChild`,`lastChild` 等;\n- 包含元素本身的信息:`nodeType`,`nodeName`;\n- style 属性包含着元素的样式。查询这个属性将返回一个对象。样式都存放在这个 style 对象的属性里。\n  \n  ``` js\n  element.style.property\n  ```\n### 获取样式\n\n``` js\n    element.style.color;//获取element 的颜色\n    element.style.font-family;// xx 应该是:\n    element.style.fontFamily;\n```\n\nDOM 在表示样式属性时采用的单位并不总是与它们在 CSS 样式表里的设置相同。\n\n``` html\n\u003cp id=\"example\" style=\"color:#999999\"\u003e\u003c/p\u003e\n\u003cscript\u003e\n    var example = document.getElementById(example);\n    alert(example.style.color);//在某些浏览器里会弹出 rgb(153,153,153)\n\u003c/script\u003e\n```\n\n对于其他单位 em、px,DOM 能正确解析。\n\n``` html\n\u003cp id=\"example\" style=\"font:12px 'Apral',sans-serif\"\u003e我行,我行,我行行行!\u003c/p\u003e\n\u003cscript\u003e\n    var example = document.getElementById(example);\n    alert(example.style.fontSize);//能正确打印出 12px\n\u003c/script\u003e\n```\n\n**DOM style 属性只能检测内嵌样式,不能用来检测在外部 CSS 文件里声明的样式,在head 头里的样式也是不能检测到**\n### 设置样式\n\nstyle 对象的各个属性都是可读写的。\n\n``` js\ndocument.style.property = value;// value 的值必须放在引号内\n```\n## 何时该用 DOM 脚本设置样式\n\n``` html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"zh-cmn-Hans\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003ctitle\u003eMan bites dog\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003ch1\u003eHold the front page\u003c/h1\u003e\n    \u003cp\u003eThis first paragraph leads you in.\u003c/p\u003e\n    \u003cp\u003eNow you get  the nitty-gritty of th story.\u003c/p\u003e\n    \u003cp\u003eThe most improtant information is delivered first.\u003c/p\u003e\n    \u003ch1\u003eExtra! Extra!\u003c/h1\u003e\n    \u003cp\u003eFurther developements are unfolding.\u003c/p\u003e\n    \u003cp\u003eYou can read all about it here.\u003c/p\u003e\n\n    \u003cscript src=\"addLoadEvent.js\"\u003e\u003c/script\u003e\n    \u003cscript src=\"1-9.js\"\u003e\u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n``` js\nfunction styleHeaderSiblings() {\n  if (!document.getElementsByTagName) return false;\n  var headers = document.getElementsByTagName(\"h1\");\n  var elem;\n  for (var i = headers.length - 1; i \u003e= 0; i--) {\n    elem = getNextElement(headers[i].nextSibling);\n    elem.style.fontWeight = \"bold\";\n    elem.style.fontSize = \"1.2em\";\n  };\n}\nfunction getNextElement(node) {\n  if (node.nodeType == 1) {\n    return node;\n  } else {\n    return getNextElement(node.nextSibling);\n  }\n  return null;\n}\naddLoadEvent(styleHeaderSiblings);//请见上篇文章\n```\n\n在线 DEMO:http://codepen.io/paddingme/pen/ogXjyB\n### 根据某种条件反复设置某种样式\n\n``` html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"zh-cmn-Hans\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003ctitle\u003eCities\u003c/title\u003e\n    \u003clink rel=\"stylesheet\" href=\"1-9-2.css\"\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003ctable\u003e\n        \u003ccaption\u003eItinerary\u003c/caption\u003e\n        \u003cthead\u003e\n            \u003ctr\u003e\n                \u003cth\u003eWhen\u003c/th\u003e\n                \u003cth\u003eWhere\u003c/th\u003e\n            \u003c/tr\u003e\n        \u003c/thead\u003e\n        \u003ctbody\u003e\n            \u003ctr\u003e\n                \u003ctd\u003eJune 9th\u003c/td\u003e\n                \u003ctd\u003eProtlan, \u003cabbr title=\"Oregon\"\u003eOR\u003c/abbr\u003e\n                \u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd\u003eJune 10th\u003c/td\u003e\n                \u003ctd\u003eSeattle, \u003cabbr title=\"Washington\"\u003eWA\u003c/abbr\u003e\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd\u003eJune 12th\u003c/td\u003e\n                \u003ctd\u003eSacramento, \u003cabbr title=\"California\"\u003eCA\u003c/abbr\u003e\u003c/td\u003e\n            \u003c/tr\u003e\n        \u003c/tbody\u003e\n    \u003c/table\u003e\n    \u003cscript src=\"addLoadEvent.js\"\u003e\u003c/script\u003e\n    \u003cscript src=\"1-9-2.js\"\u003e\u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n``` css\nbody {\n    font-family: \"Helvatica\",\"Aprial\",sans-serif;\n    background-color: #fff;\n    color: #000;\n}\n\ntable {\n    margin: auto;\n    border: 1px solid #699;\n}\n\ncaption {\n    margin:auto;\n    padding: .2em;\n    font-size: 1.2em;\n    font-weight: bold;\n}\nth {\n    font-weight: normal;\n    font-style: italic;\n    text-align: left;\n    border: 1px dotted #699;\n    background-color: #9cc;\n    color: #000;\n}\nth,td {\n    width: 10em;\n    padding: .5em;\n}\n\n/*css3 选择器 在低级浏览器无法使用我们用 DOM 来解决它*/\n\n/*tr:nth-child(odd) {\n    background-color: #ffc;\n}\n\ntr:nth-child(even) {\n    background-color: #fff;\n}\n*/\n```\n\n``` js\nfunction stripeTables() {\n  if (!document.getElementsByTagName) return false;\n  var tables = document.getElementsByTagName(\"table\");\n  var odd, rows;\n  for (var i = 0; i \u003c tables.length; i++) {\n    odd = false;\n    rows = tables[i].getElementsByTagName(\"tr\");\n    for (var j = 0; j \u003c rows.length; j++) {\n        if (odd == true) {\n            rows[j].style.backgroundColor = \"#ffc\";\n            odd = false;\n        } else {\n            odd = true;\n        }\n    };\n  };\n}\n\nfunction displayAbbreviations() {\n    if (!document.getElementsByTagName) return false;\n    if (!document.createElement) return false;\n    if (!document.createTextNode) return false;\n    //取得所有缩略词\n    var abbreviations = document.getElementsByTagName(\"abbr\");\n    if (abbreviations.length \u003c 1) return false;\n    var defs = new Array();\n    //遍历这些缩略词\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    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    //对于 dl 没有任何子节点,则立即退出 displayAbbreviations。\n    if (dlist.childNodes.length \u003c 1) return false;\n    // 创建标题\n    var header = document.createElement(\"h2\");\n    var headerText = document.createTextNode(\"Abbreviations\");\n    header.appendChild(headerText);\n    //把标题页添加到页面主体\n    document.body.appendChild(header);\n    //把定义列表添加到页面主体\n    document.body.appendChild(dlist);\n}\naddLoadEvent(stripeTables);\naddLoadEvent(displayAbbreviations);\n```\n\n在线 demo:http://codepen.io/paddingme/pen/vEOLyr\n### 响应事件\n\n对于\n\n``` css\n    tr:hover {\n        font-weight: bold;\n    }\n```\n\n部分浏览器不支持(尚未做测试)可以使用 DOM 来做。\n\n```\nfunction highlightRows() {\n    if (!document.getElementsByTagName) return false;\n    var rows = document.getElementsByTagName(\"tr\");\n    for (var i = 0; i \u003c rows.length; i++) {\n        rows[i].onmouseover = function() {\n            this.style.fontWeight = \"bold\";\n        }\n        rows[i].onmouseout = function() {\n            this.style.fontWeight = \"normal\";\n        }\n    };\n}\n```\n\n在这一类场合中,需要决定是采用纯粹的 CSS 来解决,还是利用 DOM 来设置样式,需要考虑如下要素:\n- 这个问题最简单的解决方式是什么?\n- 那种解决方案会得到更多浏览器的支持?\n\n这就要求我们对 CSS 和 DOM 技术有足够深入的了解。\n\n如果你想改变某个元素的呈现效果,请用 CSS;如果你想改变某个元素的行为,使用 DOM,如果你想根据某个元素的行为去改变它的呈现效果,请运用你的智慧。\n## className 属性\n\n``` js\nelem.className = value;// 这里是替换 class 而不是追加 class\n```\n\n``` js\n    function addClass(element,value) {\n        if (!element.className) {\n            element.className = value;\n        } else {\n            newClassName = element.className;\n            newClassName += \" \";\n            newClassName += value;\n            element.className = newClassName;\n        }\n    }\n```\n\n这样的话现在是通过 CSS 而不是 DOM 去设置样式。 JavaScript 函数现在更新的是 className 属性,根本没碰 style属性。 这确保了网页的表示层和行为层分离得更加彻底。\n\n**对函数进行抽象**\n\n``` js\nfunction styleHeaderSiblings(tag.theClass) {\n  if (!document.getElementsByTagName) return false;\n  var elems = document.getElementsByTagName(tag);\n  var elem;\n  for (var i = headers.length - 1; i \u003e= 0; i--) {\n    elem = getNextElement(elems[i].nextSibling);\n    addClass(elem,theClass);\n  };\n}\n\n```\n\n这一章我们使用 JavaScript 入侵了 CSS 领地。我们这么做的理由无非:\n1. CSS 无法让我们找到想要处理的目标元素;\n2. CSS寻找目标元素的哦方法还未得到广泛的支持。\n\n虽然未来 CSS 会让我们远离这种“不务正业” 的DOM 脚本编程技术。但有一种应用 CSS 大概永远也无法与 DOM 竞争: JavaScript 脚本能定时重复执行一组操作。\n\n好了 晚安,我还要去写论文TNT。\n","author":{"url":"https://github.com/paddingme","@type":"Person","name":"paddingme"},"datePublished":"2014-11-24T15:31:51.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/12/Learning-JavaScript/issues/12"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:cd97e0bc-158c-154d-76dc-d6e30d6fa83a
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAF34:8AB82:542387:70C33F:6A613EBC
html-safe-nonce5dc1f83fd6f09be5e5d4810f9ff64d1051d755676e9539a42be7ef91409e91c8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRjM0OjhBQjgyOjU0MjM4Nzo3MEMzM0Y6NkE2MTNFQkMiLCJ2aXNpdG9yX2lkIjoiMzE5MjE5MjU1NTcyMDcyMDA2MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac9c7fc6da02b58a397a8e681859b3461d8a81321b82b60daba3f4d8b73af526b3
hovercard-subject-tagissue:49902123
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/12/issue_layout
twitter:imagehttps://opengraph.githubassets.com/dd535478ed5248f24b0abc068c0c561e374e7ef8a90d48aeb65bb2f9e89b6699/paddingme/Learning-JavaScript/issues/12
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/dd535478ed5248f24b0abc068c0c561e374e7ef8a90d48aeb65bb2f9e89b6699/paddingme/Learning-JavaScript/issues/12
og:image:alt已经坚持了一周的学习,学到了不少 DOM 的基础知识,对一些基本概念也有了深入里概念,今天主要学习如何利用 DOM 技术去获取(读)和设置(写)CSS 信息。 三位一体的网页 结构层( structural layer) :由 HTML 或 XHTML 之类的标记语言负责创建。标签( tag ),也就是那些出现在尖括号里的单词,对网页内容的语义含义做出了描述。 行为层( presentati...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamepaddingme
hostnamegithub.com
expected-hostnamegithub.com
None2b7a3d1e6770dc7153450d820fcfe9a7851c4cf2251dcc29c7ad3c5cd1b9e88b
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
release78cf9d43f120d1f03636ca22ab420bcbb1712804
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/paddingme/Learning-JavaScript/issues/12#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpaddingme%2FLearning-JavaScript%2Fissues%2F12
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%2F12
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/12
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/12
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/12
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/12#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 24, 2014https://github.com/paddingme/Learning-JavaScript/issues/12#issue-49902123
http://codepen.io/paddingme/pen/ogXjyBhttp://codepen.io/paddingme/pen/ogXjyB
http://codepen.io/paddingme/pen/vEOLyrhttp://codepen.io/paddingme/pen/vEOLyr
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.