- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 jQuery Mobile 网站,但我们没有使用 AJAX 转换(整个网站都有 $.mobile.ajaxEnabled = false
)。
我有一个页面,我希望将其视为对话框,但是,这似乎仅在启用 AJAX 的情况下工作。
有没有人找到一种方法让 jQuery Mobile 将页面视为对话框,而不仅仅是设计一个看起来像对话框的页面?
最佳答案
jQuery Mobile 框架显示文档中找到的第一个 data-role="page"
元素,它会跳过 data-role="dialog"
元素,因此您无法让文档中的第一个伪页面是一个对话框(在初始加载时会跳过对话框)。
但是,您可以手动将伪页面插入 DOM,然后使用 $.mobile.changePage()
将新插入的页面显示为对话框:
//bind a `click` event handler to a link (to open the dialog)
$('#some-link-id').bind('click', function (event) {
//prevent the default behavior of the link (an href of '#' would try to scroll to the top of the page, we want to prevent that behavior)
event.preventDefault();
//now to get the HTML to add to the DOM for the new dialog, for demonstration purposes I set the URL of the AJAX request to the `href` attribute of the link clicked
$.get(this.href, function (serverResponse) {
//append the server response to the `body` element, this should be a `data-role="dialog"` element and it's contents
$('body').append(serverResponse);
//now that the new dialog is appeneded to the DOM, transition to it using it's ID as a reference
$.mobile.changePage($('#dialog-id'), { role : 'dialog' });
});
});
这是一个演示:http://jsfiddle.net/mVdVd/
请注意,serverResponse
预计是一个完整的 HTML 代码块,以 data-role="dialog"
元素(其 ID 为 dialog-id
)。
关于jquery 移动对话框 ajaxenabled=false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8649428/
我正在开发一个 jQuery Mobile 网站,但我们没有使用 AJAX 转换(整个网站都有 $.mobile.ajaxEnabled = false)。 我有一个页面,我希望将其视为对话框,但是,
我已经按照下面的链接在我的项目中创建了一个支持 ajax 的服务 https://msdn.microsoft.com/en-us/library/bb924552(v=vs.110).aspx 我的
我在使用 asp.net 制作的 jquery 移动网页时遇到问题。非访问第一页的页面上的回发不起作用,因为它们是使用 ajax 加载的 - 并且表单标记的“操作”不会更新。 我已在表单标记上设置 d
我有一个简单的表单,我正在尝试提交,当我这样做时,页面上的 JavaScript 都不起作用(甚至没有警报)。 我发现,如果我将 jQuery 的移动 ajaxEnabled 设置为 false,一切
我是一名优秀的程序员,十分优秀!