JavascriptはHtml元素を修正します.
520 ワード
<html>
<head>
<script type="text/javascript">
function change()
{
document.getElementById('hello').innerHTML="hello world!"
}
</script>
</head>
<body>
<input type="button" value="click me" onclick="change()"></input>
<p id="hello">Goodbye World!</p>
</body>
</html>
著作権声明:本文はブロガーのオリジナル文章で、ブロガーの許可なしに転載してはいけません.