Java Scripting Learning-note two

Source: Internet
Author: User
In addition to the contents of the tag script in the JSP, the other is directly output, and script content is the process of execution, but the final result output.

Look at the following example:
Example 1 shows the output as:
var answer= ' Yes I am! ';
document.write (answer);

Example 1:

<! DOCTYPE html>
<meta charset= "Utf-8" >
<title> Rookie Tutorial (runoob.com) </title>
<body>
var answer= ' Yes I am! ';
<br>
document.write (answer);
</body>

Example 2 shows the output as:
Yes I am!


<! DOCTYPE html>
<meta charset= "Utf-8" >
<title> Rookie Tutorial (runoob.com) </title>
<body>
<script>
var answer= ' Yes I am! ';
document.write (answer + "<br>");
</script>
</body>

Note the difference between the above two examples

Java Scripting Learning-note two

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.