我在使用JQuery和JQuery移动时遇到了一些麻烦。 当我点击页面中的链接时,出现此错误:
未捕获错误:无法在初始化之前调用页面上的方法;试图调用方法' bindRemove'
我试图改变链接rel和脚本的位置,但它破坏了我的设计......
有人有想法吗?
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Include meta tag to ensure proper rendering and touch zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Accueil</title>
<!-- CSS -->
<!-- Include jQuery Mobile stylesheets -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<!-- CSS splashscreen -->
<link rel="stylesheet" type="text/css" href="css/wemind/splashscreen.css" />
<link rel="stylesheet" type="text/css" href="css/wemind/styles_wemind.css" />
<!-- JS -->
<!-- Include the jQuery library -->
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!-- Include the jQuery Mobile library -->
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<!-- Scripts splashscreen -->
<script src="js/jquery.splashscreen.js"></script>
<script src="js/script_splashscreen.js"></script>
</head>
<body>
<div id="promoIMG" />
<div data-role="page" id="main-page">
<div id="actionbar-main"><img src="img/ic_launcher.png" /></div>
<p class="text-accueil">Qui êtes-vous ?</p>
<div id="student-link"><a href="login.php" data-transition="slide"><img src="img/ic_student.png" /></a></div>
<p class="wemind-font">Student</p>
<div id="horiz-sep-main"><img src="img/ic_sep.png" /></div>
<div id="parent-link"><a href="login.php" data-transition="slide"><img src="img/ic_teacher.png" /></a></div>
<p class="wemind-font">Teacher</p>
</div>
提前谢谢
答案 0 :(得分:0)
js/
脚本中的某些内容在初始化之前尝试在移动小部件上执行操作。查找使用bindRemove作为参数的任何函数,并在调用bindRemove之前先调用它而不使用任何参数初始化其小部件。
答案 1 :(得分:0)
我试过了:
<script>
$( document ).ready(function() {
$( "a" ).click(function( event ) {
window.location = $(this).attr("href");
});
});
</script>
我把它放在了
但是当我退出时,我被重定向到此页面,问题再次出现......
我应该可以毫无问题地点击一个链接,这很简单,代码很简单!