Java Script blocking
Statement together with some of the serial stage
Java Script is not executable block. Java scripts before and after the second block is in brackets. Such as:
<html>
<body>
<script type="text/javascript">
{
document.write ("<h1> This is a heading </ h1>");
document.write ("<p> This is a paragraph. </ p>");
document.write ("<p> This is another paragraph. </ p>");
}
</ script>
</ body>
</ html>
==========
জাভা স্ক্রীপ্ট ব্লক করা
পর্যায় ক্রমিক কতক গুলো Statement একত্রে
এক্সিকিউট করতে জাভা স্ক্রীপ্ট ব্লক করা হয়। জাভা স্ক্রীপ্ট এর আগে ও পরে সেকেণ্ড ব্রাকেট দিয়ে ব্লক করা হয়। যেমন:
<html>
<body>
<script type="text/javascript">
{
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
}
</script>
</body>
</html>
|