2018年11月1日

摘要: 1 用户名正则 //用户名正则,4到16位(字母,数字,下划线,减号) var uPattern = /^[a-zA-Z0-9_-]{4,16}$/; //输出 true console.log(uPattern.test("iFat3")); //用户名正则,4到16位(字母,数字,下划线,减号) 阅读全文
posted @ 2018-11-01 19:42 小熊还请多指教 阅读(82) 评论(0) 推荐(0) 编辑
 
摘要: Document 对象 每个载入浏览器的 HTML 文档都会成为 Document 对象。 Document 对象使我们可以从脚本中对 HTML 页面中的所有元素进行访问。 提示:Document 对象是 Window 对象的一部分,可通过 window.document 属性对其进行访问。 doc 阅读全文
posted @ 2018-11-01 18:22 小熊还请多指教 阅读(255) 评论(0) 推荐(0) 编辑