|
復制代碼 代碼如下:
function say () {
alert (arguments[0]+'說:'+arguments[1]);
}
say ('fanglor','fanglor is a boy !');
結果:彈出 fanglor 說:fanglor is a boy !
--------------------------------------------------------------------------------
這個有點類似于php 中的 func_get_args() 函數,也是獲取函數參數的數組。
例(以下是php代碼):
復制代碼 代碼如下:
function uses () {
$args =func_get_args();
if (!empty($args)) {
foreach ($args as $key => $val ) {
if (file_exists($val.'.php')) {
include "{$val}.php";
} else {
if (DEBUG) {
echo "{$val}.php 不存在!";
}
}
}
}
}
//再次封裝 include
uses ('config','db');
自動裝載 config.php 和 db.php ,如不存在,顯示 {__file__}.php不存在.
php技術:javascript,php獲取函數參數對象的代碼,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。