修改属性值

jQuery对象

$("#iframe").attr("src");//获取
$("#iframe").attr("src",url);//修改

dom对象

val.getAttribute("disabled");//获取
val.setAttribute("disabled", true);//设置
val.removeAttribute("disabled");//删除

 

posted on 2018-03-16 13:41  薇薇123456  阅读(78)  评论(0编辑  收藏  举报

导航