gpt4 book ai didi

javascript - 在 JQuery Mobile 中填充下拉菜单后的下一步

转载 作者:行者123 更新时间:2023-11-28 01:13:17 25 4
gpt4 key购买 nike

我最近发布了一个非常愚蠢的问题,为什么我的下拉列表不会填充在我正在做的phonegap JQuery应用程序中 - 我对此很陌生,我没有意识到phonegap不运行php脚本!好吧,所以我离开并做了一些适当的研究,将我的 php 脚本存储在服务器上并通过 AJAX 链接到它,嘿,很快 - 数据库连接,下拉菜单充满了快乐的日子!!

我的下一个问题是,我希望用户从新填充的下拉列表中选择一个客户,当他们单击该选项时 - 重定向到一个从我的数据库中提取有关该客户的信息的页面。

这是我用于填充列表的代码,它工作得很好。

$(document).ready(function(){
var url= "xx";
$.getJSON(url,function(json){
$.each(json.members,function(i,dat){
$("#msg").append("<option>" + dat.Name + "</option>");
});
});
});

我可以在选项标签中放入一些代码,这将允许我打开一个新页面,将客户帐号设置为变量并从我的数据库中提取他们的详细信息吗?

我试过了

 $("#msg").append("<option value='dat.AcNo'>" + dat.Name + "</option>"); 

(dat.AcNo 是检索到的帐号)但是当我放置链接到下一页的 onclick() 时,什么也没有发生。我想这是非常基本的,但我没有做正确的事情 - 帮助.......拜托?!

单击该选项后,页面将重定向到页面 customerDetails.html

最佳答案

工作示例:http://jsfiddle.net/Gajotres/vds2U/84/

HTML:

<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />
<!--<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>-->
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="page" id="index" data-theme="a" >
<div data-role="header">
<h3>
First Page
</h3>
<a href="#second" class="ui-btn-right">Next</a>
</div>

<div data-role="content">
<select name="select-choice-0" id="select-choice-1" data-native-menu="false">
<option value="second">Second page</option>
<option value="third">Third page</option>
</select>
</div>

<div data-role="footer" data-position="fixed">

</div>
</div>
<div data-role="page" id="second" data-theme="a" >
<div data-role="header">
<h3>
Second Page
</h3>
<a href="#index" class="ui-btn-left">Back</a>
</div>

<div data-role="content">

</div>

<div data-role="footer" data-position="fixed">

</div>
</div>
<div data-role="page" id="third" data-theme="a" >
<div data-role="header">
<h3>
Third Page
</h3>
<a href="#index" class="ui-btn-left">Back</a>
</div>

<div data-role="content">

</div>

<div data-role="footer" data-position="fixed">

</div>
</div>
</body>
</html>

JavaScript:

$(document).on('pagebeforeshow', '#index', function(){ 
$(document).on('change','select',function() {
var nextpage = $(this).children('option:selected').attr('value');
$.mobile.changePage('#' + nextpage);
});
});

更新:

如果您需要在其他页面上显示所选数据,请查看此 answer ,搜索章节:页面转换之间的数据/参数操作

关于javascript - 在 JQuery Mobile 中填充下拉菜单后的下一步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24170802/

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