[HTML] javascript 생성자
6282 단어 JavaScripthtmlJavaScript
- 생성자
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script>
function comFactory(cpuInfo, ramInfo, hddInfo) {
this.cpu=cpuInfo;
this.ram=ramInfo;
this.hdd=hddInfo;
this.totInfo=function(){
document.write("제조업체: 한국전자 <br />");
document.write("시스템종류: 64비트 운영체제 <br />");
}
}
var speedCom=new comFactory("2.8GHZ", "2.0GB", "1TB");
speedCom.totInfo();
speedCom.cpu="111";
speedCom.ram="8G";
document.write(speedCom.cpu+"<br />");
document.write(speedCom.ram+"<br />");
</script>
</head>
<body>
</body>
</html>
Author And Source
이 문제에 관하여([HTML] javascript 생성자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@xyunkyung/HTML-javascript-생성자저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)