为了账号安全,请及时绑定邮箱和手机立即绑定

removeAttribute

obj.removeAttribute()什么意思?有什么作用?

正在回答

1 回答

就是清除之前设置所有的样式,arr.removeAttribute('style')

    <input type="button" value="改变颜色" onclick="co()">
    <input type="button" value="改变宽高"  onclick="wd()">
    <input type="button" value="隐藏内容"  onclick="cn()">
    <input type="button" value="显示内容"  onclick="cx()">
    <input type="button" value="取消设置"  onclick="qv()">
  </form>
<script>
    var arr=document.getElementById("txt");
    function co() {
        arr.style.color='red';
        arr.style.backgroundColor='blue';
    }
    function wd() {
        arr.style.width="500px";
        arr.style.height="800px";
    }
    function cn() {
        arr.style.display='none';
    }
    function cx() {
        arr.style.display='block';
    }
    function qv() {
        var open=confirm("是否取消设置?")
        if(open==true){
        arr.removeAttribute('style')

        }
    }


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739782    人
  • 解答问题       9566    个

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

进入课程

removeAttribute

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信