---------------------方式一開始--------------------
<script>
function ts(){
printArguements(arguments);
}
function printArguements(obj){
s='';
for(i=0;i< obj.length;i++) s+=obj[i]+'___';
document.write(s);
}
ts();
ts(1);
ts(1,2);
ts(1,2,3);
ts(1,2,3,4);
ts(1,2,3,4,5);
</script>
---------------------方式一結(jié)束--------------------
---------------------方式二開始--------------------
<script>
function ts(){
alert(arguments.length)
for(i=0;i< arguments.length;i++)
document.write(arguments[i]);
}
ts();
ts(1);
ts(1,2);
ts(1,2,3);
ts(1,2,3,4);
ts(1,2,3,4,5);
</script>
---------------------方式二結(jié)束--------------------
分享標(biāo)題:js動(dòng)態(tài)參數(shù)
文章地址:http://jinyejixie.com/article8/podiip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、網(wǎng)站設(shè)計(jì)公司、小程序開發(fā)、關(guān)鍵詞優(yōu)化、搜索引擎優(yōu)化、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)