gpt4 book ai didi

javascript - Jquery mobile 将 window.location.href 更改为 mobile.changePage

转载 作者:行者123 更新时间:2023-11-29 21:59:43 47 4
gpt4 key购买 nike

我有一个关于 JQuery Mobile 的简短问题

我有以下脚本并希望有一个数据转换=幻灯片,但它不适用于 window.location.href。所以我想将其更改为 $.mobile.changePage。但我不明白。

这是脚本;

var category_data;
$(document).ready(function () {
$('#search_category_form').bind('submit', function(){
var form = $('#search_category_form');
var data = form.serialize();

$.post('index.html', data, function(){
category_data = data;
window.location.href = 'index.html#search_general';
});

return false;
});

谢谢你的帮助

最佳答案

$.mobile.changePage() is now deprecated ,但是您可以将代码更改为:

// [deprecated] $.mobile.changePage("index.html#search_general", {transition: "slide"});
$.mobile.pageContainer.pagecontainer("change", "index.html#search_general", {transition: "slide"});

关于javascript - Jquery mobile 将 window.location.href 更改为 mobile.changePage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24496350/

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