这个removeAttribute()函数的意义具体谁能解答?

来源:4-1 编程挑战

promise4034862

2016-09-28 21:00

//定义"取消设置"的函数 function tmove() {    var temp=confirm("确认要取消设置吗?");    if(temp)    {     var mychar=document.getElementById("txt");    mychar.removeAttribute("style");    } }初学者,欢迎评价。

写回答 关注

1回答

  • xuanbintop
    2016-09-28 21:29:15

    这个removeAttribute方法是删除<>标签内,属性名称对应的字段,比如标签内有style="height:200px",此时,该部分会被删除

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题