我在 iScroll4 滚动条中嵌入了一个表单。表单是 ajax 表单,由 wordpress Gravity forms 插件生成。
当我在表单上点击提交时,iscroll 的高度(在页面加载时生成)保持不变,这意味着如果在按下提交按钮后表单更大,则无法一直向下滚动。
请参阅下面的代码...
var myScroll,
myScrollSidebar;
function loaded() {
myScroll = new iScroll('wrapper');
myScrollSidebar = new iScroll('sidebar-wrapper');
}
var formInputs = [
document.getElementById('gform_submit_button_1'),
document.getElementById('input_1_1'),
document.getElementById('input_1_2'),
document.getElementById('input_1_3'),
document.getElementById('input_1_4'),
document.getElementById('input_input_1_5')
];
for(var i = 0; i < formInputs.length; i++) {
formInputs[i].addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
}
jQuery(document).bind('gform_page_loaded', function(){
var formInputs = [
document.getElementById('gform_submit_button_1'),
document.getElementById('input_1_1'),
document.getElementById('input_1_2'),
document.getElementById('input_1_3'),
document.getElementById('input_1_4'),
document.getElementById('input_input_1_5')
];
for(var i = 0; i < formInputs.length; i++) {
formInputs[i].addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
}
});
document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
document.addEventListener('DOMContentLoaded', function () { setTimeout(loaded, 200); }, false);
任何人都可以帮我修复它,以便在提交表单时,iScroll 的高度可能会刷新吗?
绑定的 jquery 是在表单提交后表单输入工作。这是因为 iscroll4 难以处理表单元素。
提前致谢。
乔什