我可以修复jQueryMobile对话框的宽度和高度吗?

前端之家收集整理的这篇文章主要介绍了我可以修复jQueryMobile对话框的宽度和高度吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以修复jQueryMobile对话框的宽度和高度吗?目前,宽度的大小是100%,这在iPad中真的很糟糕.

解决方法

您可以设置对话框的页面宽度,实例: http://jsfiddle.net/bXPTd/3/
<div data-role="page" id="bar">
   <a href="#foo" data-role="button" data-inline="true" data-rel="dialog" data-transition="pop">Open dialog</a>  

</div>

<div data-role="page" id="foo" style="width:300px;">
    Hello Foo
    <a href="#" data-role="button" data-rel="back">Close dialog</a>
</div>
原文链接:https://www.f2er.com/jquery/180730.html

猜你在找的jQuery相关文章