検索

ホームページ  >  に質問  >  本文

オブジェクトの作成中に問題が発生しました

<script>var a={}a.name='ははは';a.age=20;a.say=function(){"hello"};document.write(a.say())< ;/script>/*オブジェクトにアクセスすると、ブラウザが unknown を出力するのはなぜですか? 関数の値を直接出力できないのですか? */

小龙小龙1730日前1048

全員に返信(2)返信します

  • Guanhui

    Guanhui2020-05-04 10:44:02

    say() メソッドにはリターンがないためです

    返事
    0
  • DY。

    正解. //say=function(){"hello"}; say=function(){return "hello"};

    DY。 · 2020-05-08 01:52:29
  • キャンセル返事