我是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); });