我正在从我的 jQuery 函数向我的身体发送一个值,但似乎 jQuery 没有发送该值。我想在我的页面加载时触发以下 jQuery 函数:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src='http://cdn.bitbucket.org/pellepim/jstimezonedetect/downloads/jstz-1.0.4.min.js'></script>
<script>
$(document).ready(function(){
var tz = jstz.determine(); // Determines the time zone of the browser client
jQuery('body').load('index.php?session_name='+tz.name());
});
</script>
</head>
<body>
索引.php:
<?php
session_start();
if (isset($_GET['session_name'])) {$_SESSION['session_name'] = $_GET['session_name'];}
echo $_SESSION['session_name'];
……………………………………………………………………………………