ordebehesht
Member
یکی به من یگه این ID تو تگها html چیه اصلا به چه دردی می خورهمرسی
<html>
<head>
<script type="text/javascript">
function change_header()
{
document.getElementById("myHeader").innerHTML="Nice day!";
}
</script>
</head>
<body>
<h1 id="myHeader">Hello World!</h1>
<button onclick="change_header()">Change text</button>
</body>
</html>
<!-- In HEAD -->
<style type="text/css">
#top { background-color: #ccc; padding: 1em}
.intro { color: red; font-weight: bold; }
</style>
<!-- In BODY -->
<div id="top">
<h1>Chocolate curry</h1>
<p class="intro">This is my recipe for making curry purely with chocolate</p>
<p class="intro">Mmm mm mmmmm</p>
</div>
http://www.w3schools.com/