x
 
<!DOCTYPE html>
<html>
<body>
<div id="myDiv" style="border:1px solid red;width:100px;height:100px;overflow:scroll;">
这是一些文本。 这是一些文本。 这是一些文本。
这是一些文本。 这是一些文本。 这是一些文本。
这是一些文本。 这是一些文本。 这是一些文本。
</div>
<br>
<button type="button" onclick="myFunction()">返回 overflow</button>
<script>
function myFunction() {
  alert(document.getElementById("myDiv").style.overflow);
}
</script>
</body>
</html>