a.js
==================================
window.onload=function(){
fontTag.onclick=function(){
alert("홍길동");
}
}
c.css
===================================
font { color:red; }
a.html
=======================================
<html>
<head>
<link rel="stylesheet" href="c.css" type="text/css">
<script src="a.js"></script>
</head>
<body>
<font id="fontTag">aaa</font>
</body>
</html>
'개발하자 > 자바스크립트' 카테고리의 다른 글
객체생성이용,외부js파일이용,클릭이벤트 등록하기 (0) | 2015.03.03 |
---|---|
객체생성 이용해서 버튼만들어서 css적용하기 (0) | 2015.03.03 |
iframe이용,페이지 열기 (0) | 2015.03.03 |
이전페이지 다음페이지로 이동하기 (0) | 2015.03.03 |
onmouseover,onmouseout (0) | 2015.03.03 |