2009年7月30日 星期四

Javascript 自訂函數,多個回傳值

Javascript 自訂函數,多個回傳值的範例如下:

<html>
<head>

<script type="text/javascript">
function myFunction()
{
return (["Hello, have a nice day!","See you !"]);
}
</script>

</head>
<body>
<script type="text/javascript">
var a, b;
[a,b] = myFunction();
document.write(a + "<P>" + b)
</script>
</body>
</html>

沒有留言:

張貼留言