问答详情
源自:2-4 JavaScript-提问(prompt 消息对话框)

函数checkscope()的调用

写一段程序,实现对函数checkscope()的调用

提问者:三年二班的阮姑娘 2016-03-15 19:08

个回答

  • qq_绿树苍天
    2016-03-15 20:56:01
    已采纳

    function checkscope(){}

    <input type="button" value="调用checkscope" onclick="checkscope()"/>

  • 仔柯天堂
    2016-03-15 21:07:25

    function checkscope(){}

    <input type="button" value="调用checkscope" onclick="checkscope()"/>


  • qq_為妳變壞_0
    2016-03-15 21:04:26

    // 定义scope ()

    function checkscope(){//代码块}

    //创建点击按键并绑定事件

    <input type="button" value = "checkscope" onclick = "checkscope()"  />

  • qq_绿树苍天
    2016-03-15 20:56:06

    function checkscope(){}

    <input type="button" value="调用checkscope" onclick="checkscope()"/>