2
我遇到了一個奇怪的問題與jQuery手機 - 如果我有一個錨鏈接到同一頁面,然後點擊鏈接後頁面上的JavaScript不運行並返回到同一頁面。jquery mobile - 第二次訪問頁面後沒有觸發頁面
例如(test.html中):
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.1/jquery.mobile.structure-1.4.1.min.css" />
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
<script type="text/javascript">
alert('hello');
</script>
</head>
<body>
<div style="height: 1000px">
<a href="test.html?dosomething=1">test</a>
</div>
</body>
</html>
...「你好」警報顯示的第一次,但點擊「測試」鏈接後(回到同一頁)警報不會發生。
如果我刪除對jquery mobile js的引用,那麼它確實按預期工作,顯示「hello」。
有人知道這裏發生了什麼嗎?
非常感謝邁克爾,那工作 – MG123 2014-09-05 01:33:03
高興地幫助:) – 2014-09-05 01:54:41