这是我的一个页面,要求用户选择他们将使用的个人资料类型
<div data-role="page" id="profile" data-content-theme="a">
<div data-role="content">
<center>
<font size="6">
<br>Select Profile<br><br>
</font>
<img src="images/logo.png" width="70%">
</center>
<a href="#main" data-role="button" style="position:absolute; bottom:85px; width:90%;">Guest</a>
<a href="#main" data-role="button" style="position:absolute; bottom:25px; width:90%;">Enthusiast</a>
</div>
</div><!-- /page profile select -->
两个按钮都指向同一个页面,但是,根据选择的配置文件,我需要在另一个页面上提供更详细的信息,在网站的更远的地方。我想使用 cookie 来存储有关用户选择的一些信息,然后一旦他们选择访问信息页面,就会检查他们的个人资料并为他们提供适当的信息。我不知道如何开始。虽然我不得不使用一些 php 代码,但我无法让这些按钮做任何事情。我怎样才能让他们存储一些我以后可以在信息页面中检查的变量?