我正在这里做一些事情。
Javascript
$('#create').submit(function() {
$.ajax({
data: $(this).serialize(),
type: $(this).attr('method'),
url: $(this).attr('action'),
success: function(response) {
console.log(response);
}
});
return false;
});
php文件(网址):
session_start();
header('Access-Control-Allow-Origin: *');
session_set_cookie_params( time() + 3600, '/', '.domain.com');
print_r($_SESSION);
die;
在我的会话 [memberid] = [some int] 表单的页面上;
但是如果我让ajax调用整个sesison变量是空的
我试着在谷歌上寻找一些答案,我试着在堆栈溢出上寻找一些答案
但没有任何帮助。而且我不喜欢使用 iframe。也许这就是解决方案,但也许有人知道我需要在这里做什么。
表单位于域 m.domain.com,php 文件位于 domain.com