“提交”按钮仅适用于移动设备

时间:2018-04-11 19:41:54

标签: javascript html

所以我正在使用phonegap来创建一个应用程序,提交按钮在浏览器上正常工作(不刷新页面),但是当我在移动设备上运行它时它只能工作一次,如果我按下“开始”按钮移动键盘按预期工作只是实际提交按钮不起作用。

不确定您是否需要更多信息,如果您愿意,我可以提供更多关于代码的信息。

我正在使用JQuery:

\1
bool throwing_func()
{
    // something is wrong...
    throw char('5');

    // ...

    return true;
}

void exception_handler(std::exception_ptr _Eptr)
{
    try 
    {
        if (_Eptr) {std::rethrow_exception(_Eptr);}
    }


    catch(int _Xi)
    {
        std::cout << "int\n";
    }

    catch(char _Xc)
    {
        std::cout << "char\n";
    }

    catch(const std::exception& _Xe)
    {
       std::cout << "std::exception " << _Xe.what() << "\n";
    }

    catch (...)
    {// develop more catch cases above to avoid what follows
        std::cout << "unhandled exception\n";
        // grande problema
    }
}

int main()
{

    try
    {
        throwing_func();
    }

    catch(...)
    {
        //Determine exception type here

         exception_handler(std::current_exception());
    }

    return 0;
}

$(function() {
    $("form").submit(function() { return false; });
});

0 个答案:

没有答案