gpt4 book ai didi

javascript - 将参数传递给 jQuery Mobile 中的页面

转载 作者:行者123 更新时间:2023-11-30 10:38:59 24 4
gpt4 key购买 nike

我有两个页面,p1.htmlp2.html使用 jQuery Mobile。

p1.html中有一些链接, 所有链接都导航到 p2.html但有一点不同。

我想传递一个 int参数 p2.html javascript(例如,链接号),所以p2.html中的javascript代码,根据 int 对自身进行少量更改参数(在转换开始之前)。

我想使用 Ajax 导航功能和 jQuery Mobile 的转换,我不想使用页面 anchor (p2.html#6)。

如何将该参数发送到p2.html

最佳答案

能否使用cookies保存相关信息?

获取cookie jquery plugin .

p1.html

<a href="p2.html" data-p2data="1">Link 1</a>
<a href="p2.html" data-p2data="2">Link 2</a>
<script type="text/javascript">
$(document).ready(function(){
$('a[data-p2data]').click(function(){
$.cookie('p2data', $(this).data('p2data'));
}
}
</script>

p2.html

<script type="text/javascript">
var p2data = $.cookie('p2data');
// .. process the page based on the value in p2data.
</script>

关于javascript - 将参数传递给 jQuery Mobile 中的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12290034/

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