<body>
<script>
function turn_red( obj) {
obj.style.backgroundColor="red"; //obj可为任意名称
}
</script>
<script>
function turn_red( obj) {
obj.style.backgroundColor="red"; //obj可为任意名称
}
</script>
<button οnclick="turn_red(body)">red</button> //body 函数的作用对象。如果是this指代button按钮
</body>