我有以下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。