jQuery Мобильный шаблон - PullRequest
0 голосов
/ 05 января 2012

Я не вижу, что я делаю здесь неправильно - я пытаюсь создать базовый мобильный шаблон jQuery. Глядя на панель CSS в Firefox, вы не видите, что CSS отображается.

<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Phillip Senn">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile template</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css">
<script>
$(document).bind("mobileinit", function() {
    $.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
</head>
<body>
<div data-role="page" id="myPage">
    <div data-role="header">
        <h1>jQuery Mobile Template</h1>
    </div>
    <div data-role="content" id="myContent"> 
        My Content 
    </div>
    <div data-role="footer">
        <h4>Copyright &copy; 2012 Your name here</h4>
    </div>
</div>
</body>
</html>

Это просто не рендеринг как мобильная страница jQuery.

1 Ответ

2 голосов
/ 05 января 2012

Ваш код выглядит нормально, я думаю, что это проблема с последними сборками jQM

Последние связанные библиотеки

1.0 Выпуск связанных библиотек

Примечание:

Также jQM не поддерживает версию 1. JQuery.1 пока что

использовано 1.6.4

...