Home >php教程 >php手册 >如何在javascript中写入php代码

如何在javascript中写入php代码

PHPz
PHPzOriginal
2016-06-13 11:39:244526browse

这篇文章介绍了javascript中直接写php代码的方法,有需要的朋友可以参考一下

一、在javascript中嵌入php代码

javascript若是通过js文件包含进来的,那么js文件中也可以直接写php代码,只不过包含js文件是扩展名要改成php,如:

代码如下:

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

二、javascript函数参数的默认值

c语言中可以通过这样来设置默认参数:

代码如下:

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

但是javascript却不能这样:

newGame : function(a, b = 0)

ie和chrome会报错,ff会直接忽略。

我们可以用arguments只读变量数组来实现:

代码如下:

function newGame(){ 
var a = arguments[0] ? arguments[0] : 1; 
var b = arguments[1] ? arguments[1] : false; 
//函数内容 
}

 

【相关教程推荐】

1. php编程从入门到精通全套视频教程
2. php从入门到精通 
3. bootstrap教程

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn