元素属性的添加删除(原生js)


添加属性

			odiv.setAttribute("title","hello div!");
			odiv.setAttribute("class","boxClass");
			odiv.setAttribute("hello","divTag");//自定义属性设(hello="divTag")

获取属性

			var v=odiv.getAttribute("hello");
			console.log(v);//divTag
			console.log(odiv["hello"]);//undefiend

删除属性

			
			odiv.removeAttribute("title");//参数:属性名
			
			//路径相关属性
			var oImg = document.getElementsByTagName("img")[0];
			var url=oImg.getAttribute("src")
			console.log(url);//图片相对路径
			
			var url2 = oImg.src;
			console.log(url2);//获取绝对路径

  

posted on 2017-12-30 08:36  水墨江山画  阅读(18139)  评论(0编辑  收藏  举报

导航