You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
969 B

  1. @{
  2. Layout = null;
  3. }
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta name="viewport" content="width=device-width" />
  8. <title>Link</title>
  9. </head>
  10. <body>
  11. <div>
  12. <a href="" id="stuenroll">报名</a>
  13. <br /><br />
  14. @*<a href="" id="loc">查询考试地点及时间</a><br /><br />*@
  15. <a href="" id="res">查询录取结果</a>
  16. </div>
  17. <script src="/Content/jquery/jquery-1.10.2.min.js"></script>
  18. @*<script src="~/Areas/EducationalAdministration/Views/StuVolunteer/server.js"></script>*@
  19. <script src="~/StuVolunteer/server.js"></script>
  20. <script>
  21. $(function () {
  22. var CardNo = request('CardNo');
  23. //报名
  24. $('#stuenroll').attr('href', '/EducationalAdministration/StuVolunteerPhone/FormApply?EmpNo=' + CardNo);
  25. //查询录取结果
  26. $('#res').attr('href', '/EducationalAdministration/StuVolunteerPhone/Search');
  27. })
  28. </script>
  29. </body>
  30. </html>