1

我对 appMobi、HTML 和 JavaScript 真的很陌生。我唯一想做的就是我有一个带有 onClick 方法的按钮,这个方法应该做任何事情。我已经定义了一个脚本,我有一个按钮,但没有调用该方法。有人可以告诉我为什么吗?appMobi 提供的示例并没有什么不同——我认为。这是我的代码:

    <head>
    <!-- the line below is required for access to the appMobi JS library -->
    <script type="text/javascript" charset="utf-8" src="http://localhost:58888/_appMobi/appmobi.js"></script>

    <script type="text/javascript" language="javascript">
        // This event handler is fired once the AppMobi libraries are ready
        function onDeviceReady() {
            //use AppMobi viewport to handle device resolution differences if you want
            //AppMobi.display.useViewport(768,1024);

            //hide splash screen now that our app is ready to run
            AppMobi.device.hideSplashScreen();
        }

        //initial event handler to detect when appMobi is ready to roll
        document.addEventListener("appMobi.device.ready",onDeviceReady,false);
        function myfunction(){
            AppMobi.debug.log("test");
            alert("Hallo Welt");

        }

    </script>


    <script type="text/javascript">

        function myfunction(){
            AppMobi.debug.log("test");
            alert("Hallo Welt");
        }
        </script>

</head>
<body >
    <br>

       <button onclick="myfunction();">MyButton</button>

</body>
4

1 回答 1

1

最后,我找到了解决方案!而不是 onclick="myfunction" 你必须使用ontouchstart="myfunction"
如果有人能告诉我为什么会很好。

于 2013-01-05T14:27:51.593 回答