我使用Foundation6显示编码弹出窗体。我遇到的JavaScript问题我跟踪的可能与jQuery.js / Foundation.js事件绑定或处理有关。
当我在显示窗口中单击文本字段(或任何其他字段)时,该字段将获得焦点,然后显示窗口会快速隐藏并再次显示,并且该字段已失去焦点。显示窗口也会改变它在屏幕上的位置。访问文本字段的唯一方法是使用tab键。
的index.html:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.2.4/foundation.css"/>
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.2.4/foundation.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="app.js"></script>
</head>
<body>
<section class="container clearfix">
<h3>Click button to open modal and test focus lost problem:</h3>
<p><a href="modalform.html" class="button" data-open="newFormModal" data-showloading="1">Test focus modal form</a></p>
</section>
<div class="reveal" id="newFormModal" data-reveal data-close-on-click><section class="modalContent"></section><button class="close-button" data-close aria-label="Close reveal" type="button"><i class="fi-x"></i></button></div>
</body>
</html>
modalform.html
<h3 class="modalheader">PopupForm</h3>
<form method="post" accept-charset="utf-8" class="ajaxModal" data-showloading="1" data-open="newFormModal" action="/test/modalform3">
<div style="display:none;"><input type="hidden" name="_method" value="POST" /></div>
<div class="input text"><label for="ga-20x28">Product 1 qty:</label><input type="text" name="ProductQuantities[726][value]" id="ga-20x28" value="0" /></div> <input type="hidden" name="ProductQuantities[726][name]" value="GA 20x28" />
<div class="input text"><label for="ga-30x40">Product 2 qty:</label><input type="text" name="ProductQuantities[727][value]" id="ga-30x40" value="0" /></div> <input type="hidden" name="ProductQuantities[727][name]" value="GA 30x40" />
<div class="input text"><label for="ga-50x70">Product 3 qty:</label><input type="text" name="ProductQuantities[728][value]" id="ga-50x70" value="0" /></div> <input type="hidden" name="ProductQuantities[728][name]" value="GA 50x70" />
<button type="submit">Next</button>
</form>
<button data-close="" class="refreshId" type="submit">Close</button>
app.js:
$(document).ready(function() {
$(document).foundation();
$("body").on("click", "a[data-open]", function(e) {
e.preventDefault();
var $this = $(this);
var modalName = $this.data("open");
var $modal = $("#" + modalName);
var $target = $modal.children(".modalContent");
var requestUri = $(this).attr('href');
var requestData;
var method;
if($this.attr('data-request')) {
requestData = $(this).data("request");
method = 'POST';
} else {
requestData = "";
method = 'GET';
}
// Load content:
var request = $.ajax({
url: requestUri,
method: method,
data: requestData,
dataType: "html",
timeout: 60000
});
request.done(function(response) {
$target.html(response);
$target.foundation();
});
});
});
您可以在这里测试行为(至少在我的浏览器Firefox和Chrome上):[
http://codepen.io/repeat_spacer/pen/bBRZKd ][1]
。从按钮打开显示弹出窗口并尝试更改任何文本字段的值。单击鼠标就无法进入该字段。
希望有人能指出我的问题或如何继续跟踪它。
更新:
我清理了modalform.html代码(有一些ajax显示加载新表单的东西,我有ajax加载下一个表单)。所以现在加载下一个表格&#34;功能不起作用,但另一方面,焦点丢失&#34;行为消失了。
modalform_updated.html:
<h3 class="modalheader">PopupForm</h3>
<form method="post" accept-charset="utf-8" class="ajaxModal" action="submitmodal.php">
<div style="display:none;"><input type="hidden" name="_method" value="POST" /></div>
<div class="input text"><label for="p1qty">Product 1 qty:</label><input type="text" name="ProductQuantities[p1][value]" id="p1qty" value="0" /></div>
<div class="input text"><label for="p2qty">Product 2 qty:</label><input type="text" name="ProductQuantities[p2][value]" id="p2qty" value="0" /></div>
<div class="input text"><label for="p3qty">Product 3 qty:</label><input type="text" name="ProductQuantities[p3][value]" id="p3qty" value="0" /></div>
<button type="submit">Submit</button>
</form>
<button data-close="" class="refreshId" type="submit">Close</button>
更新了codepen: http://codepen.io/repeat_spacer/pen/MbrYvj
更新2:
这就是我在表单属性中打开数据(Foundation Reveal open-attribute)的原因。它似乎是行为的原因导致它触发基础打开事件,当单击表单中的字段时。所以快速修复将过滤掉一些肮脏的方式。
以下是我想要的多弹出功能的小提琴:http://codepen.io/repeat_spacer/pen/JbMdPm(第一个弹出模式ajax在同一个模态中加载下一个弹出内容)
答案 0 :(得分:2)
好的,我现在开始工作了。就像想知道问题是在基金会事件绑定中。
当我在表单属性中添加data-modalname
来表示我希望Ajax加载下一个模态页面时,我正在考虑一些奇特的通用性,就像我需要在第一个按钮中显示模态窗口。)
现在,当<form method="get" accept-charset="utf-8" class="ajaxModal" data-showloading="1" data-modalname="this" action="modalform2.html">
处于表单属性中时,每次单击表单中的某些内容时,它都会触发显示打开事件。该事件将关闭所有显示,然后在数据打开属性中打开带有id的显示,这会导致失去焦点。
我现在将模态名称保存到{{1}},一切都按预期工作。
HTML修改:
{{1}}
然后更改JS中的事件处理程序以从那里读取模态名称。
答案 1 :(得分:1)
我相信你遇到的问题是你将事件处理程序放在body
上,这意味着每次点击页面中的任何内容时它都会运行。在显示内单击会触发您的事件处理程序,它会重新打开显示模式,从而弄乱您的焦点。
要解决此问题,请将您的点击处理程序分配给页面上的其他内容。或者如果你真的想把它放在身上,做一些事情来检查揭示是否已经打开,然后再触发它... a la
$("body").on("click", "a[data-open]", function(e) {
if($('body').hasClass('is-reveal-open')) { return; }
// rest of handler
}