JS操作元素事件
1.直接在标签里面添加事件属性:参数this(代表当前元素对象),字符串拼接,转义字符(/‘/')
2.Dom.onClick=function(){}
3.dom.addEventListener(事件名,方法名);//同是操作多个事件
dom.removeEventListener(方法名);//移除事件属性
JS操作元素添加删除
document.createELement("元素对象");
例:var d = document.createElement("div")
d.innerH
d.styl
d.set
Dom.appendchild(d);
Dom.remove();
//第一种添加事件的方式:参数(this),字符串拼接,转义字符
var dd = document.getElementById('dd');
//字符串拼接
dd.innerHTML = '
';
//转义字符
dd.innerHTML = '
';
//参数(this) 代表当前元素对象
function show(num){
console.log(num);
console.log(num.innerHTML);
获取这个元素对象
获取内容
输出内容
}
dd.onclick = function(event){ //e代表事件对象
console.log(event);//e代表事件对象
console.log(this);//this代表当前元素对象
}
ss
//阻止默认事件(return false)
123