当点击iframe(外部页面)中的链接时,我需要更新第1页上的会话变量。 当我点击iframe的链接时,会话变量已成功设置。 问题是我需要刷新页面1以更新第1页上的会话变量。
如何解决这个问题。任何ajax,jquery帮助。 感谢
答案 0 :(得分:1)
HTML a href
链接:
<a href="#" id="clickme">Update Session</a>
jQuery代码:
您可以使用data: { varname: 'here we go'}
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
$("#clickme").click(function(e) {
e.preventDefault();
$.ajax({
type:'POST',
url:'update.php',
data: { varname: 'here we go'},
success:function(response){
alert(response);
}
});
});
</script>
update.php文件:
您可以使用$_POST["varname"]
<?php
$_SESSION["varname"] = $_POST["varname"];
echo $_SESSION["varname"];
?>