我和阿贾克斯的第一次郊游。我正在尝试捕获单个复选框的值,如果选中,则将 PHP $_SESSION 变量设置为 true。
在 HTML 我有这个。
<input type="checkbox" name="agree" id="agree"/>
and the js is this....not sure what to put in the AJAX data params??
$(document).ready(function() {
$('#agree').click(function(){
$.ajax({
url: 'agree.php',
type: 'GET',
data: { agreement:"checked" } //NOT Sure ABout this??
});
})
});
和 PHP,伪代码可能是因为它不工作..
if($_GET['agreement'] == 'checked') {
$_SESSION['hm-agreement'] = true;
} else {
$_SESSION['hm-agreement'] = false;
}