xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript 函数Apply()示例 - 基础教程(div.cn)</title>
<body>
<script>
var name = "Seagull";
function display() {
document.write(this.name);
}
display.apply();
</script>
</body>
</html>