<body>
<div id="div" name="div" style="width:100px height:100px background:#ccc"></div>
</body>
<script>
var oDiv = document.getElmentById('div')
oDiv.onclick=function(){
alert(oDiv.name) //这个时候填出 div
}
</script>
需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html,填充问题基础代码。
2、在index.html中的<script>标签,输入js代码:$('body').append($('button').attr('class'))。
3、浏览器运行index.html页面,此时按钮的class名被js取到并打印了出来。