jQuery在页面之间传递数据

前端之家收集整理的这篇文章主要介绍了jQuery在页面之间传递数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是jQuery的新手.有没有办法通过jQuery检索在另一个页面中预订的值?
$(document).ready(function() {
    $(".active").click(function() {
        var booked=$(this).val();
        confirm(booked);
    });
});

解决方法

如果纯粹在客户端,则使用 cookies或HTML5 localStorage.
localStorage.setItem('bookedStatus' + customerId,true);

如果数据已经提交给服务器,则使用ajax.

$.get('/site/getBookingStatus?customerId=' + customerId,function(data){
   alert(data);
});

猜你在找的jQuery相关文章