我是 jQuery、Ajax 和所有的新手,我不知道将 html 文件的值传递给 php 文件。
例如:我的 html 文件为
<html>
<script>
$(document).ready(function(){
$(".teachers_but").click(function(){
//alert('teacher');
var id=0;
alert(id);
});
$(".students_but").click(function(){
//alert('student');
var id=1;
});
});
</script>
<div class="teachers_but"><a href="join.php">TEACHER SIGNUP</a></div>
<div class="students_but" style="text-align: center; margin-top: 8px;"><a href="signup.php">STUDENT SIGNUP</a></div>
</html>
如何将 html 文件中的 id 值传递给 php 文件并为该值设置 cookie。