|
-
- @{
- Layout = null;
- }
-
- <!DOCTYPE html>
-
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>Link</title>
- </head>
- <body>
- <div>
- <a href="" id="stuenroll">报名</a>
- <br /><br />
- @*<a href="" id="loc">查询考试地点及时间</a><br /><br />*@
- <a href="" id="res">查询录取结果</a>
- </div>
- <script src="/Content/jquery/jquery-1.10.2.min.js"></script>
- @*<script src="~/Areas/EducationalAdministration/Views/StuVolunteer/server.js"></script>*@
- <script src="~/StuVolunteer/server.js"></script>
-
- <script>
- $(function () {
- var CardNo = request('CardNo');
- //报名
- $('#stuenroll').attr('href', '/EducationalAdministration/StuVolunteerPhone/FormApply?EmpNo=' + CardNo);
- //查询录取结果
- $('#res').attr('href', '/EducationalAdministration/StuVolunteerPhone/Search');
- })
-
- </script>
- </body>
- </html>
|