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.

Link.cshtml 969 B

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