検索

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

変数内でメソッドを使用する方法

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>ajax</title>

</head>

<body>

<button onclick="ass.ss() ">実行</button>

<script>

var ass = function ss() {alert("hello") };

//解決方法ss() メソッドを実行できますか?

</script>

</body>

</html>

奇遇奇遇2003日前1066

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

  • angryTom

    angryTom2019-07-15 11:46:22

    それにアクセスするには、変数名と括弧を使用するだけです。 ass() を直接使用できます

    返事
    0
  • キャンセル返事