<html>
<body style="background:#f3f3f3 url('img_tree.png');background-repeat:repeat-y;">
<h1>Hello World!</h1>
<button type="button" onclick="myFunction()">获取 background-repeat 值</button>
<script>
function myFunction() {
alert(document.body.style.backgroundRepeat);
}
</script>
</body>
</html>