- 博客(6)
- 收藏
- 关注
原创 普通函数与箭头函数的this
普通函数: this指向函数调用时的对象; function foo() { return function() { return function() { return function(){
2018-02-03 14:59:35 316
原创 css text-overflow属性
使用text-overflow属性时同时要设置 white-space:nowrap; overflow:hidden; 如果要用于a中则要加“float”,否则无效。 如果在Td元素中则要设置table的“table-layout:fixed”,属性与元素的“width:100%”。 - 省略号 - text-overflow: ellipsis;每天学习一点新东西真的会好开心~ “
2017-11-24 22:08:31 231
原创 失去焦点和获得焦点
var serch=document.getElementById("serch"); //失去焦点 serch.onblur=function(){ if(this.placeholder=='') { this.placeholder='搜索您想要的商品'; } } //获得焦点 serch.onfocus=function(){ if(this.pla
2017-11-15 22:14:23 169
原创 回到顶部滑动效果
摘抄var Go=document.getElementsByClassName("Go")[0]; function goTop(acceleration, time) { acceleration = acceleration || 0.1; time = time || 16; var x1 = 0; var y1
2017-11-13 10:41:46 218
原创 JS中document.documentElement和document.body
都是指节点 document .body.scrollTop属性在xhtml标准网页或者更简单的说是带标签的页面里得到的结果是0,如果不要此标签则一切正常,那么在xhtml页面怎么获得body的坐标呢,使用document .documentElement来取代document .body 在监听滚动条事件中var top=document.documentElement.scrollTop||
2017-11-13 10:00:11 501
原创 JS的with语句的使用方式
with语句可以用来引用某个特定对象的属性 不能用来给对象添加属性,要给对象创建新的属性,必须明确地引用该对象。 foo = "window"; function first(){ var foo = "first"; function third(obj){ console.log(foo); //first
2017-11-10 17:27:30 208
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人