中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript函數如何定義

發布時間:2022-09-26 17:41:07 來源:億速云 閱讀:173 作者:iii 欄目:互聯網科技

這篇“JavaScript函數如何定義”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“JavaScript函數如何定義”文章吧。

功能定義

在我們使用一個函數之前,我們需要定義它。在 JavaScript 中定義函數的最常見方法是使用function關鍵字,后跟唯一的函數名稱、參數列表(可能為空)和用大括號括起來的語句塊。

句法

此處顯示了基本語法。

<script type = "text/javascript">
   <!--
      function functionname(parameter-list) {
         statements
      }
   //--></script>

例子

試試下面的例子。它定義了一個名為 sayHello 的函數,它不接受任何參數

<script type = "text/javascript">
   <!--
      function sayHello() {
         alert("Hello there");
      }
   //--></script>

調用函數

要在腳本稍后的某處調用函數,您只需編寫該函數的名稱,如以下代碼所示。

<html>
   <head>   
      <script type = "text/javascript">
         function sayHello() {            document.write ("Hello there!");
         }      </script>      
   </head>   
   <body>
      <p>Click the following button to call the function</p>      
      <form>
         <input type = "button" onclick = "sayHello()" value = "Say Hello">
      </form>      
      <p>Use different text in write method and then try...</p>
   </body></html>

輸出

Click the following button to call the functionUse different text in write method and then try...

功能參數

到目前為止,我們已經看到了沒有參數的函數。但是有一個工具可以在調用函數時傳遞不同的參數。這些傳遞的參數可以在函數內部捕獲,并且可以對這些參數進行任何操作。一個函數可以接受多個用逗號分隔的參數。

例子

試試下面的例子。我們在這里修改了sayHello函數。現在它需要兩個參數。

<html>
   <head>   
      <script type = "text/javascript">
         function sayHello(name, age) {            document.write (name + " is " + age + " years old.");
         }      </script>      
   </head>   
   <body>
      <p>Click the following button to call the function</p>      
      <form>
         <input type = "button" onclick = "sayHello('Zara', 7)" value = "Say Hello">
      </form>      
      <p>Use different parameters inside the function and then try...</p>
   </body></html>

輸出

Click the following button to call the functionUse different parameters inside the function and then try...

聲明

JavaScript 函數可以有一個可選的return語句。如果要從函數返回值,這是必需的。該語句應該是函數中的最后一個語句。

例如,您可以在一個函數中傳遞兩個數字,然后您可以期望該函數在您的調用程序中返回它們的乘法。

例子

試試下面的例子。它定義了一個函數,該函數接受兩個參數并將它們連接起來,然后在調用程序中返回結果。

<html>
   <head>  
      <script type = "text/javascript">
         function concatenate(first, last) {            var full;
            full = first + last;            return full;
         }         function secondFunction() {            var result;
            result = concatenate('Zara', 'Ali');            document.write (result );
         }      </script>      
   </head>   
   <body>
      <p>Click the following button to call the function</p>      
      <form>
         <input type = "button" onclick = "secondFunction()" value = "Call Function">
      </form>      
      <p>Use different parameters inside the function and then try...</p>  
  </body></html>

輸出

Click the following button to call the functionUse different parameters inside the function and then try...

以上就是關于“JavaScript函數如何定義”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淳安县| 南京市| 平阳县| 通河县| 交城县| 遵义市| 本溪市| 剑川县| 古丈县| 佳木斯市| 霍州市| 理塘县| 黑龙江省| 合山市| 油尖旺区| 洞头县| 新昌县| 诸暨市| 保德县| 翁牛特旗| 寿阳县| 永春县| 建湖县| 新乡县| 上饶市| 邮箱| 洱源县| 五莲县| 通化县| 曲靖市| 黄梅县| 井陉县| 江川县| 武平县| 怀来县| 信阳市| 灵寿县| 长岛县| 会东县| 图木舒克市| 曲水县|