事件冒泡和事件捕获的应用场景——事件代理/事件委托
采用事件代理,为页面中的所有a标签绑定click事件。 document .addEventListener( click , function ( e ) { if (e.target.nodeName == A ) console .log( a );}, false ); 问题:若a标签里面仍有span、img等其他元素,上...
采用事件代理,为页面中的所有a标签绑定click事件。 document .addEventListener( click , function ( e ) { if (e.target.nodeName == A ) console .log( a );}, false ); 问题:若a标签里面仍有span、img等其他元素,上...
1、浅拷贝 仅仅复制对象的引用,而不是对象本身。 var person = {name: Alice ,friends: [ Bruce , Cindy ]} var student = {id: 30 }student = simpleClone(person, student);student.friends.push( David );alert(person.friends); f...
vue.js父子组件之间的数据通信,细节总结 隐性规则:单行数据流 学前疑问: 1.父组件如何向子组件通信数据?2.父组件可以直接修改子组件的数据!但是反过来绝对不可以!那怎么解决...
学前疑问: 什么是组件参数检验? 组件参数校验都有哪些属性设置?分别表示什么意思? 什么是props特性?何为非props特性?如何判断? 重要代码讲解如下: 父组件通过属性content向子...
解决办法: 打开文件www/phpcms/modules/poster/poster.php , 找到第221行左右; 修改代码,在代码if ($_GET[group]) { 的后面,添加如下代码: $ _GET[ group ] = preg_replace( #`# , , $_GET[ group ]); 然后,将修...
教你通过 PS软件 ,对图片进行有效 压缩 ,进而达到网站的优化,缩短完成加载的时间,但并不会改变图片的尺寸大小 ! 我们以上面的JPG图片为例(PNG图片同样操作),详细操作步骤...
!DOCTYPE html html head meta charset = UTF-8 title / title style .btn-default { display : inline-block; padding : 6px 12px ; margin-bottom : 0 ; font-size : 14px ; font-weight : 400 ; line-height : 1.42857143 ; text-align : center; white-sp...
!DOCTYPE html html head meta charset = utf-8 title demo / title style /*图片的蒙版效果*/ .div { width : 50px ; height : 50px ;} .div :hover .img { filter : url (blur.svg #b lur); -webkit-filter : blur ( 2px ); /*像素值越大,越模...