PHP code can be written directly in JavaScript

Source: Internet
Author: User

First, embed PHP code in javascript

If JavaScript is included in the JS file, then the JS file can also write directly PHP code, except that the JS file is the extension to be converted to PHP, such as:

<script herf= "js/demo.js.php" ></script>


Default values for JavaScript function parameters
You can set the default parameters in C language by doing this:

void foo (int a, int b = 1, bool c = false);

But JavaScript can't do this:
Newgame:function (A, b = 0)

IE and chrome will make an error, and FF will ignore it directly.
We can do this with a arguments read-only variable array:

function Newgame () {
var a = Arguments[0]? Arguments[0]: 1;
var B = arguments[1]? ARGUMENTS[1]: false;
function content
}

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.