我目前有一个Blog页面,它使用.getJSON和.append动态显示博客文章。对于博客中的每个帖子,我都附加了一个“阅读更多”'按钮,它将指向另一个URL,其中包含有关帖子的更多信息。
我动态添加了“阅读更多”'按钮使用:
`$('#content').append('<form class="blogReadMore" method="post" action="blogReadMore.php"><button type="submit" class="btn btn-default btn-block" name="readMoreButton" value="' + entry.id + '">Read More</button></form>');`.
&#13;
按下提交按钮后,我使用了AJAX.on(&#39;提交&#39;),但创建
$_SESSION variable in php does not seem to work:
$_SESSION['read_more_blog_post_id'] = $_POST['readMoreButton'];
。
如果我将php赋值行更改为$_SESSION['read_more_blog_post_id'] = "69";
,那么我可以访问此值 - 否则我将为null。
任何大大帮助的帮助