dhtml1.html
981 Bytes
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>DHTMLサンプル</title>
<script language="javascript" type="text/javascript">
function changeTitle() {
document.getElementById('title').style.fontSize = '16px';
}
function changeLink() {
document.getElementById('link').href = 'http://www.google.co.jp';
document.getElementById('link').firstChild.nodeValue = 'Googleへ';
}
</script>
</head>
<body bgcolor="#ffffff">
<h1 id="title">サンプル</h1>
<a href="http://www.shuwasystem.co.jp/" id="link">
秀和システムへ
</a>
<hr />
<input type="button" name="b1" value="タイトル変更" onclick="changeTitle()" />
<input type="button" name="b2" value="リンク変更" onclick="changeLink()" />
</body>
</html>