xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript 函数call()方法示例 - 基础教程(div.cn)</title>
<body>
<h1>JavaScript call() 方法</h1>
<script>
function Product(name, price) {
this.name = name;
this.price = price;
}
function Food(name, price) {
Product.call(this, name, price);
this.category = "food";
}
document.write(new Food("cheese", 12).name);
</script>
</body>
</html>