Jquery UI对话框不能与JQuery Mobile一起工作

时间:2016-12-12 13:56:20

标签: jquery jquery-ui jquery-mobile jquery-ui-dialog

当我还包含JQuery mobile时,我无法在JQuery中使用简单的对话框:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Dialog - Default functionality</title>


  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-2.1.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>


  <script>
  $( function() {
    $( "#dialog" ).dialog();
  } );
  </script>
</head>
<body  style="background-color: #888">

<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>


</body>
</html>

我看过以前的这些似乎没有帮助的问题:

我做错了什么?

1 个答案:

答案 0 :(得分:0)

在阅读RedNao的帖子Using multiple versions of jquery ui后,我能够创建一个简单的概念证明。

这个想法是交换两个jQuery实例,但是,你被警告,我还没有完全测试代码中的大量使用。

之后,我使用data-enhance="false"将UI对话框标记隐藏到jQuery Mobile。

<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
   var jQM=jQuery, $QM=$;
</script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
  var jQUI=jQuery, $QUI=$;
  window.jQuery = jQM;
  window.$ = $QM;
  $(document).on('mobileinit', function () {
    $.mobile.ignoreContentEnabled = true;
  });

</script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

然后,它看起来像这样:

enter image description here

Plunker:https://plnkr.co/edit/oOg6cKEuMFXVrMn3ntCb?p=preview