var date = new Date();
var date = date.getTimezoneOffset();
timezone=(date*60) * -1;
var gmt = 'GMT';
if (timezone !== 0) {
gmt += timezone > 0 ? ' +' : ' ';
gmt += timezone;
}
$(document).ready(function(e) {
$.post("tesing.php", {"timezone":timezone});
});
如何使用jQuery设置没有帖子的会话?
我使用javascript查找用户时区,我需要创建一个会话时区,这样我就可以更新用户的时间。
答案 0 :(得分:0)
如果要在后端(PHP)中设置会话,则必须向testing.php发出请求。可以POST
或GET
。如果要实现REST API,当然也可以使用PUT
。