The use of Java Script tag <body>
Java scripts on a web site loaded soon see, <body> tag is to use the Java scripts. Such as:
<html>
<head>
</ head>
<body>
<script type="text/javascript">
<! -
document.write ("Hello World")
/ / ->
</ script>
<p> This is web page body </ p>
</ body>
</ html>
As can be seen in the following output:
Hello World
This is web page body
=======
<body> ট্যাগের মাঝে জাভা স্ক্রীপ্ট ব্যবহার করা
কোন ওয়েব সাইট লোড হওয়া মাত্রই জাভা স্ক্রীপ্ট চালু দেখতে চাইলে, <body> ট্যাগের মাঝে জাভা স্ক্রীপ্ট ব্যবহার করতে হয়। যেমন:
<html>
<head>
</head>
<body>
<script type="text/javascript">
<!--
document.write("Hello World")
//-->
</script>
<p>This is web page body </p>
</body>
</html>
তখন নিচের মতো আউটপুট দেখা যাবে:
Hello World
This is web page body
|