| | |
|
'JavaScript 팁..'에 해당되는 글 4건
|
|
|
|
<SCRIPT LANGUAGE="JavaScript"> <!-- Member = function(name, id){ this.name = name ; this.id = id ; }
Member.prototype = { setValue: function(newName, newId){ this.name = newName; this.id = newId; },
getName: function(){ return this.name; },
getId: function(){ return this.id; } }
var mem1 = new Member(); mem1.setValue("홍길동", "hong"); document.write(mem1.getName()); document.write(mem1.getId());
</SCRIPT>
|
|
|
|
|
|
| http://laedu.net/trackback/11 | |
| |
|
| |
| | |
|
|
|
|
<SCRIPT LANGUAGE="JavaScript"> <!--
var mem = {lee:"이씨", park:"박씨", kim:"김씨"}; document.write(mem.lee); document.write(mem.park); document.write(mem.kim);
var mem1 = ["lee","park","kim"]; document.write(mem1[0]);
var mem3 = { name:"홍길동", etc:[35, "남", "대구"] }; document.write(mem3.name); document.write(mem3.etc.length); document.write(mem3.etc[0]); document.write(mem3.etc[1]); document.write(mem3.etc[2]);
</SCRIPT>
|
|
|
|
|
|
| http://laedu.net/trackback/10 | |
| |
|
| |
| | |
|
|
|
|
<SCRIPT LANGUAGE="JavaScript"> <!--
Member = function(name, id){ this.name = name ; this.id = id ; }
Member.prototype.setValue = function(newName, newId){ this.name = newName ; this.id = newId ; }
Member.prototype.getName = function(){ return this.name; }
Member.prototype.getId = function(){ return this.id; }
var mem = new Member("홍길동","hong"); document.write(mem.name); document.write(mem.id);
mem.setValue("임꺽정","imguk"); document.write(mem.getName()); document.write(mem.getId());
</SCRIPT>
|
|
|
|
|
|
| http://laedu.net/trackback/9 | |
| |
|
| |
| | |
|
|
|
|
주소창에 javascript:alert(document.documentElement.innerHTML); |
|
|
|
|
|
| http://laedu.net/trackback/8 | |
| |
|
| |
| | |
|
|
| |
| | |
|
|
|
| | 웹기반 프로그래밍에 관한 것들을 모을 예정이었는데.. | | |
|
|
| |
«
2024년 11월
»
일 |
월 |
화 |
수 |
목 |
금 |
토 |
|
|
|
|
|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
| | |
|
|