无法在JQuery中调用函数

时间:2014-04-07 14:14:45

标签: jquery html5 jquery-ui jquery-mobile

我有以下html,我使用$.mobile.changePage('Test.html');

加载
<html>
<head lang="en">
    <script src="jquery/jquery-1.9.1.min.js"></script>
    <script type="text/javascript">
    function methodInsideHead()
    {
    console.log('Inside Header Section');
    }
    </script>
</head>
<body>
<script type="text/javascript">
    function methodInsideBody()
    {
    console.log('Inside BOdy Section');
    }
</script>
<input type="button" value="Click ME" onclick="methodInsideHead()"/>
</body>
</html>

单击按钮时,函数methodInsideHead()未被调用,但如果我将函数调用替换为methodInsideBody(),则其工作正常。我正在使用JQuery Mobile。

0 个答案:

没有答案