我发现了一个问题,我的确切问题没有人回答:
https://stackoverflow.com/questions/11218707/jquery-mobile-data-rel-dialog-not-firing
我有一个对话框,当用户按下按钮时该对话框应该打开。它适用于所有桌面浏览器和Android浏览器。它在iPhone或iPad上的Safari中不起作用。如果你在iDevice上刷新页面,它就可以工作。
这是我的按钮:
<a href="#popup" data-role="button" data-rel="dialog" data-icon="gear" data-iconpos="right" data-transition="slidedown">@Model.selectedDate.ToShortDateString()</a>
这是我的对话框:
<div data-role="dialog" id="popup">
<div data-role="header" data-theme="b">
<h1>Production Date</h1>
</div>
<div data-role="content" data-theme="b">
@using (Html.BeginForm()) {
<div data-role="fieldcontainer">
@Html.LabelFor(model => model.selectedSystem, "Select a date for System " + Model.selectedSystem)
@Html.HiddenFor(model => model.selectedSystem)
@Html.LabelFor(model => model.selectedDate, "Date:")
@Html.TextBoxFor(model => model.selectedDate, new { type = "date" })
</div>
<button type="submit" data-theme="b">Select</button>
}
</div>
以下是呈现页面的页面源:
<div data-role="page" id="mainpage" data-theme="b">
<div data-role="header" data-theme="b" data-position="fixed">
<center>
<a href="/Home/Main">
<img src="/mobileDemo/Images/company_header_logo_mobile.png" border="0" /></a>
</center>
</div>
<div style="text-align: center; padding-top: 5px">
<center>
<a href="/mobileDemo/Home/Main">
<img src="/mobileDemo/Images/menu_home.png" style="width: 40px" border="0" /></a>
<a href="/mobileDemo/Counts">
<img src="/mobileDemo/Images/menu_prodcounts.png" style="width: 40px" border="0" /></a>
<a href="/mobileDemo/Inventory">
<img src="/mobileDemo/Images/menu_inventory.png" style="width: 40px" border="0" /></a>
<a href="/mobileDemo/Vehicle">
<img src="/mobileDemo/Images/menu_vehicle.png" style="width: 40px" border="0" /></a>
<a href="/mobileDemo/SSAR">
<img src="/mobileDemo/Images/menu_ssar.png" style="width: 40px" border="0" /></a>
<a href="/mobileDemo/STAR">
<img src="/mobileDemo/Images/menu_star.png" style="width: 40px" border="0" /></a>
<a href="/mobileDemo/EXECDASH">
<img src="/mobileDemo/Images/menu_dashboard.png" style="width: 40px" border="0" /></a>
</center>
</div>
<div style="padding-left: 20px; padding-top: 10px">
<strong>Body Dashboard for System 1</strong>
</div>
<div style="padding-right: 15px; padding-left: 15px; padding-top: 10px">
<a href="#popup" data-role="button" data-rel="dialog" data-icon="gear" data-iconpos="right"
data-transition="pop">11/7/2012</a>
<hr />
<ul data-role="listview" data-inset="true">
<li><a href="/mobileDemo/ExecDash/BodyProd/1/11-07-2012">Production</a></li>
<li><a href="/mobileDemo/ExecDash/BodyOEE?system=1&date=11-07-2012">Body OEE</a></li>
<li><a href="/mobileDemo/ExecDash/BodyDKS?system=1&date=11-07-2012">Doukie-Seisan
KPI</a></li>
<li><a href="/mobileDemo/ExecDash/BodyDT?system=1&date=11-07-2012">Down Time</a></li>
</ul>
</div>
</div>
另外值得注意的是,我将一个参数传递给视图。 URL如下所示:
http://internal-server/mobileDemo/ExecDash/Body/1
当显示对话框IS时,这是:
http://internal-server/mobileDemo/ExecDash/Body/1#&ui-state=dialog
在iDevice上什么时候不工作(刷新之前),这是当我按住按钮时显示的内容,它给我打开/打开新TAB选项:
http://internal-server/mobileDemo/ExecDash/Body/1#popup
我做错了什么?
答案 0 :(得分:0)
我让你的例子进行了一些小调整。
我收到你的对话框并在关闭data-role =“page”后立即将其粘贴在_Layout.cshtml中,见下面的代码:
<body>
<div data-role="page" data-theme="b">
<div data-role="header">
@if (IsSectionDefined("Header")) {
@RenderSection("Header")
} else {
<h1>@ViewBag.Title</h1>
@Html.Partial("_LoginPartial")
}
</div>
<div data-role="content">
@RenderBody()
</div>
</div>
<div data-role="dialog" id="popup">
<div data-role="header" data-theme="b">
<h1>Production Date</h1>
</div>
<div data-role="content" data-theme="b">
@using (Html.BeginForm()) {
<div data-role="fieldcontainer">
<label>hello world</label>
</div>
<button type="submit" data-theme="b">Select</button>
}
</div>
</div>
@Scripts.Render("~/bundles/jquery", "~/bundles/jquerymobile")
@RenderSection("scripts", required: false)
正如你所看到的,我也拿出了你的一些代码,因为我没有你的模型,所以我用“hello world”标签代替了。那么我为什么这么做呢?好吧,我试图将对话框放在index.cshtml中,但这意味着对话框HTML正在data-role =“page”中输出。所以它并没有为我开火。一旦我把它移到data-role =“page”div之外就行了。在iPhone5上测试过它(无需刷新)。我在这篇文章中注意到你的标记的一件事是你错过了一个结束DIV。所以我不确定它是复制/粘贴错误还是什么。尝试我的确切步骤,你应该看到它正在工作,iDevice就好了。