gpt4 book ai didi

javascript - 向自己提交表单后的 jQuery 移动加载脚本

转载 作者:行者123 更新时间:2023-11-28 06:21:38 27 4
gpt4 key购买 nike

我正在编写一个处理脚本,允许用户在表单的各个部分中输入数据并保存每个部分,而不是一次性完成整个页面。它本质上是页面内可扩展元素内的一系列表单。但是,在向自身提交任何表单后,页面无法重新加载任何 javascript,在 jquery mobile 的文档中确实说这可能会出现问题,但我无法使那里提供的任何解决方案发挥作用。

我已将代码精简为一个非常基本的框架以进行故障排除:

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>

<body onload = myFunction("<?php echo $_GET['p']?>")>
<script>

function myFunction(tab)
{
$('#content_'+tab).collapsible('expand');
}
</script>
<div data-role="collapsibleset" class="ui-content">
<div id = "content_1" data-role="collapsible">
<h1>Click me - I'm collapsible!</h1>
<form action = "<?php echo $_SERVER['PHP_SELF'] . "?p=1"?>" method="GET">
<div><input type="submit" id="Button1" name="" value="Save"></div>
</form>
</div>
<div id = "content_2" data-role="collapsible">
<h1>Click me - I'm collapsible!</h1>
<p>I'm the expanded content.</p>
</div>
<div id = "content_3" data-role="collapsible">
<h1>Click me - I'm collapsible!</h1>
<p>I'm the expanded content.</p>
</div>
<div id = "content_4" data-role="collapsible">
<h1>Click me - I'm collapsible!</h1>
<p>I'm the expanded content.</p>
</div>
<div id = "content_5" data-role="collapsible">
<h1>Click me - I'm collapsible!</h1>
<p>I'm the expanded content.</p>
</div>
</div>
</body>
</html>

该代码试图完成一个简单的任务。提交表单后,将其发送给自身,其中一些 php 脚本将处理结果,然后页面会将更新加载到表单字段中。这一切都工作得很好,没有做它应该做的事情的部分是 myFunction 进程,它应该将事件的可扩展内容设置为 content_ 的值($_GET['p'] 中的数字)。

我认为将它放在正文中会强制其在页面加载时更新,但 jquery mobile 的行为不同。

我也尝试过将 js 放在单独的 .js 文件中加载到 header 中,但无济于事。

我什至尝试将所有 java 脚本包含在 div 元素内,并使用该包装器围绕所有可扩展内容元素,正如 jQuery 文档所说(我认为)仅加载 div 元素。

提交表单后,系统会对其进行处理,但不会自动展开任何内容。如果您手动刷新页面,它会按应有的方式展开,但您不需要在单击“保存”后手动刷新页面。

我也尝试过使用

  <script>
$( document ).on( "pagecreate", function( event ) {
var tab = <?php echo $_GET['p'];?>;
alert(tab);
$('#content_'+tab).collapsible('expand');
});

</script>

上面的内容将回显 p 的正确值,但不会为任何内容分配扩展。我尝试将其包含在可扩展的 div 元素之前和之后。

我已经没有办法尝试让它加载了,我是否错过了一些简单的东西,或者是否有我还没有遇到的替代方案?

最佳答案

尝试将其放入 pagecontanershow 事件中,然后放置一个开关以根据加载的页面运行脚本。请记住,当使用 AJAX 导航时,JQM 仅加载第二个及后续页面的正文,从标题加载的 JS 仅在第一个页面加载时加载,因此您需要使其全部可用。

$(document).on("pagecontainershow", function(event, ui) {

console.log('pagecontainershow::navigating to page ' + ui.toPage.attr('id'));

page_id = ui.toPage.attr('id');


switch (page_id) {
case 'page-id1':
//some page specific code here
break;
case 'page-id2':
//some more here
break;
}
});

关于javascript - 向自己提交表单后的 jQuery 移动加载脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35477899/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com