切换到宽版
  • 1006阅读
  • 1回复

开始选课了 [复制链接]

上一主题 下一主题
离线令狐冲
 
发帖
207
啄木币
1497
鲜花
66
只看楼主 倒序阅读 使用道具 0楼 发表于: 2010-12-27


[td=1,1,220 background=images/index3_03_01.jpg]
2010年12月27日 星期一   在线 138
  
[/td][td=1,1,764 background=images/index3_04.jpg]
  
//==========================//        菜单开始//==========================//菜单原提供:3dapple.com//修改:大奔//QQ:14368918//时间:2004.04.21//沸腾展望新闻多媒体系统//沸腾工作室//原 mt_dropdownC.jsmtDropDown.spacerGif = "images/Menu_x.gif"; mtDropDown.dingbatOn = "images/Menu_expand-1.gif"; mtDropDown.dingbatOff = "images/Menu_expand-0.gif"; mtDropDown.dingbatSize = 14; mtDropDown.menuPadding = 1; mtDropDown.itemPadding = 4; mtDropDown.shadowSize = 2; mtDropDown.shadowOffset = 3; mtDropDown.shadowColor = "#888"; mtDropDown.shadowPng = "images/005.png"; mtDropDown.backgroundColor = "#EAEAF4"; mtDropDown.backgroundPng = "images/004.png"; mtDropDown.hideDelay = 200; mtDropDown.slideTime = 200; mtDropDown.reference = {topLeft:1,topRight:2,bottomLeft:3,bottomRight:4};mtDropDown.direction = {down:1,right:2};mtDropDown.registry = [];mtDropDown._maxZ = 100;mtDropDown.isSupported = function() {if (typeof mtDropDown.isSupported.r == "boolean") return mtDropDown.isSupported.r;var ua = navigator.userAgent.toLowerCase();var an = navigator.appName;var r = false;if (ua.indexOf("gecko") > -1) r = true; else if (an == "Microsoft Internet Explorer") {if (document.getElementById) r = true; }mtDropDown.isSupported.r = r;return r;}mtDropDown.initialize = function() {for (var i = 0, menu = null; menu = this.registry; i++) {menu.initialize();}}mtDropDown.renderAll = function() {var aMenuHtml = [];for (var i = 0, menu = null; menu = this.registry; i++) {aMenuHtml = menu.toString();}document.write(aMenuHtml.join(""));}function mtDropDown(oActuator, iDirection, iLeft, iTop, iReferencePoint, parentMenuSet) {this.addItem = addItem;this.addMenu = addMenu;this.toString = toString;this.initialize = initialize;this.isOpen = false;this.show = show;this.hide = hide;this.items = [];this.onactivate = new Function(); this.ondeactivate = new Function(); this.onmouseover = new Function(); this.onqueue = new Function(); this.index = mtDropDown.registry.length;mtDropDown.registry[this.index] = this;var id = "mtDropDown" + this.index;var contentHeight = null;var contentWidth = null;var childMenuSet = null;var animating = false;var childMenus = [];var slideAccel = -1;var elmCache = null;var ready = false;var _this = this;var a = null;var pos = iDirection == mtDropDown.direction.down ? "top" : "left";var dim = null;function addItem(sText, sUrl) {var item = new mtDropDownItem(sText, sUrl, this);item._index = this.items.length;this.items[item._index] = item;}function addMenu(oMenuItem) {if (!oMenuItem.parentMenu == this) throw new Error("Cannot add a menu here");if (childMenuSet == null) childMenuSet = new mtDropDownSet(mtDropDown.direction.right, -5, 2, mtDropDown.reference.topRight);var m = childMenuSet.addMenu(oMenuItem);childMenus[oMenuItem._index] = m;m.onmouseover = child_mouseover;m.ondeactivate = child_deactivate;m.onqueue = child_queue;return m;}function initialize() {initCache();initEvents();initSize();ready = true;}function show() {if (ready) {_this.isOpen = true;animating = true;setContainerPos();elmCache["clip"].style.visibility = "visible";elmCache["clip"].style.zIndex = mtDropDown._maxZ++;slideStart();_this.onactivate();}}function hide() {if (ready) {_this.isOpen = false;animating = true;for (var i = 0, item = null; item = elmCache.item; i++) dehighlight(item);if (childMenuSet) childMenuSet.hide();slideStart();_this.ondeactivate();}}function setContainerPos() {var sub = oActuator.constructor == mtDropDownItem; var act = sub ? oActuator.parentMenu.elmCache["item"][oActuator._index] : oActuator; var el = act;var x = 0;var y = 0;var minX = 0;var maxX = (window.innerWidth ? window.innerWidth : document.body.clientWidth) - parseInt(elmCache["clip"].style.width);var minY = 0;var maxY = (window.innerHeight ? window.innerHeight : document.body.clientHeight) - parseInt(elmCache["clip"].style.height);while (sub ? el.parentNode.className.indexOf("mtDropdownMenu") == -1 : el.offsetParent) {x += el.offsetLeft;y += el.offsetTop;if (el.scrollLeft) x -= el.scrollLeft;if (el.scrollTop) y -= el.scrollTop;el = el.offsetParent;}if (oActuator.constructor == mtDropDownItem) {x += parseInt(el.parentNode.style.left);y += parseInt(el.parentNode.style.top);}switch (iReferencePoint) {case mtDropDown.reference.topLeft:break;case mtDropDown.reference.topRight:x += act.offsetWidth;break;case mtDropDown.reference.bottomLeft:y += act.offsetHeight;break;case mtDropDown.reference.bottomRight:x += act.offsetWidth;y += act.offsetHeight;break;}x += iLeft;y += iTop;x = Math.max(Math.min(x, maxX), minX);y = Math.max(Math.min(y, maxY), minY);elmCache["clip"].style.left = x + "px";elmCache["clip"].style.top = y + "px";}function slideStart() {var x0 = parseInt(elmCache["content"].style[pos]);var x1 = _this.isOpen ? 0 : -dim;if (a != null) a.stop();a = new Accelimation(x0, x1, mtDropDown.slideTime, slideAccel);a.onframe = slideFrame;a.onend = slideEnd;a.start();}function slideFrame(x) {elmCache["content"].style[pos] = x + "px";}function slideEnd() {if (!_this.isOpen) elmCache["clip"].style.visibility = "hidden";animating = false;}function initSize() {var ow = elmCache["items"].offsetWidth;var oh = elmCache["items"].offsetHeight;var ua = navigator.userAgent.toLowerCase();elmCache["clip"].style.width = ow + mtDropDown.shadowSize + 2 + "px";elmCache["clip"].style.height = oh + mtDropDown.shadowSize + 2 + "px";elmCache["content"].style.width = ow + mtDropDown.shadowSize + "px";elmCache["content"].style.height = oh + mtDropDown.shadowSize + "px";contentHeight = oh + mtDropDown.shadowSize;contentWidth = ow + mtDropDown.shadowSize;dim = iDirection == mtDropDown.direction.down ? contentHeight : contentWidth;elmCache["content"].style[pos] = -dim - mtDropDown.shadowSize + "px";elmCache["clip"].style.visibility = "hidden";if (ua.indexOf("mac") == -1 || ua.indexOf("gecko") > -1) {elmCache["background"].style.width = ow + "px";elmCache["background"].style.height = oh + "px";elmCache["background"].style.backgroundColor = mtDropDown.backgroundColor;elmCache["shadowRight"].style.left = ow + "px";elmCache["shadowRight"].style.height = oh - (mtDropDown.shadowOffset - mtDropDown.shadowSize) + "px";elmCache["shadowRight"].style.backgroundColor = mtDropDown.shadowColor;elmCache["shadowBottom"].style.top = oh + "px";elmCache["shadowBottom"].style.width = ow - mtDropDown.shadowOffset + "px";elmCache["shadowBottom"].style.backgroundColor = mtDropDown.shadowColor;}else {elmCache["background"].firstChild.src = mtDropDown.backgroundPng;elmCache["background"].firstChild.width = ow;elmCache["background"].firstChild.height = oh;elmCache["shadowRight"].firstChild.src = mtDropDown.shadowPng;elmCache["shadowRight"].style.left = ow + "px";elmCache["shadowRight"].firstChild.width = mtDropDown.shadowSize;elmCache["shadowRight"].firstChild.height = oh - (mtDropDown.shadowOffset - mtDropDown.shadowSize);elmCache["shadowBottom"].firstChild.src = mtDropDown.shadowPng;elmCache["shadowBottom"].style.top = oh + "px";elmCache["shadowBottom"].firstChild.height = mtDropDown.shadowSize;elmCache["shadowBottom"].firstChild.width = ow - mtDropDown.shadowOffset;}}function initCache() {var menu = document.getElementById(id);var all = menu.all ? menu.all : menu.getElementsByTagName("*"); elmCache = {};elmCache["clip"] = menu;elmCache["item"] = [];for (var i = 0, elm = null; elm = all; i++) {switch (elm.className) {case "items":case "content":case "background":case "shadowRight":case "shadowBottom":elmCache[elm.className] = elm;break;case "item":elm._index = elmCache["item"].length;elmCache["item"][elm._index] = elm;break;}}_this.elmCache = elmCache;}function initEvents() {for (var i = 0, item = null; item = elmCache.item; i++) {item.onmouseover = item_mouseover;item.onmouseout = item_mouseout;item.onclick = item_click;}if (typeof oActuator.tagName != "undefined") {oActuator.onmouseover = actuator_mouseover;oActuator.onmouseout = actuator_mouseout;}elmCache["content"].onmouseover = content_mouseover;elmCache["content"].onmouseout = content_mouseout;}function highlight(oRow) {oRow.className = "item hover";if (childMenus[oRow._index]) oRow.lastChild.firstChild.src = mtDropDown.dingbatOn;}function dehighlight(oRow) {oRow.className = "item";if (childMenus[oRow._index]) oRow.lastChild.firstChild.src = mtDropDown.dingbatOff;}function item_mouseover() {if (!animating) {highlight(this);if (childMenus[this._index]) childMenuSet.showMenu(childMenus[this._index]);else if (childMenuSet) childMenuSet.hide();}}function item_mouseout() {if (!animating) {if (childMenus[this._index])childMenuSet.hideMenu(childMenus[this._index]);else dehighlight(this);}}function item_click() {if (!animating) {if (_this.items[this._index].url) location.href = _this.items[this._index].url;}}function actuator_mouseover() {parentMenuSet.showMenu(_this);}function actuator_mouseout() {parentMenuSet.hideMenu(_this);}function content_mouseover() {if (!animating) {parentMenuSet.showMenu(_this);_this.onmouseover();}}function content_mouseout() {if (!animating) {parentMenuSet.hideMenu(_this);}}function child_mouseover() {if (!animating) {parentMenuSet.showMenu(_this);}}function child_deactivate() {for (var i = 0; i //原 mt_dropdown_initialize.js        var preloaded = [];        // here is a lame preloading script i am putting in just for demonstration        for (var i = 1; i
        |  网站首页  | 教务要闻  | 办公通知  | 机构设置  | 文件规定  | 综合教务  | 常用下载  | 网络学堂  | 师生问答  |
       网站首页>>办公通知>>教务管理 >>排课选课 体颜色: 选择颜色 黑 色 红 色 黄 色 绿 色 橙 色 紫 色 蓝 色 褐 色 墨 绿 深 蓝 赭 石 粉 绿 淡 绿 黄 灰 翠 绿 综 红 砖 红 淡 蓝 暗 红 玫瑰红 紫 红 桔 黄 军 黄 烟 灰 深 灰 灰 蓝   【字体:放大 正常 缩小】    
【双击鼠标左键自动滚屏】【图片上滚动鼠标滚轮变焦图片】    
  

[size=+2]山东大学2010-2011学年第二学期本科生选课通知

  发表日期:2010年12月24日          【编辑录入:jwk】


各院部、各位同学:
2010-2011学年第二学期选课工作,全部安排在校园网上进行,任何一台接入互联网的机器都可在规定时间内进行选课,外出实习的学生可在当地进入山东大学网页选课。为了确保该工作的顺利进行,请各学院认真做好本院学生选课组织工作(含交流生、进修生、借读生等学生)。对于外出交流及休学的学生,要自主删除选课预置结果,同时学院要作好相应检查工作。
一、选课安排
2010-2011学年第二学期选课工作,分四个阶段进行:
第一阶段为所有学生选课(含毕业班学生)阶段,时间安排在本学期第17、18周(2010年12月27日-2010年1月10日)进行;
第二阶段为交流学生、进修生、留学生选课阶段,时间安排在本学期第19周(2011年1月11日-1月15日)进行;
第三阶段为非毕业班学生补退选阶段,时间安排在下学期开学第2、3周(2011年2月26日-3月11日)进行;
第四阶段为毕业班学生毕业前重考选课阶段,时间安排在下学期开学第4周(2011年3月14日-3月20日)进行。
(一)所有学生选课(含毕业班学生、中韩班学生)阶段
1、预选:预选时间为7天(2010年12月27日8:00起至2011年1月3日8:00止)。预选时,每位同学均应根据本专业教学计划选定课程,全校通选课每人只能选择1门,多选无效全校任选课的课序号均在“900”以上(含“900”),请同学们务必注意,不要错选。
2、正选:正选时间为6天(2011年1月3日17:00起至2011年1月10日8:00止)。正选时,学校将对报名人数大于课容量的选修课程进行随机抽签,即学生须用鼠标点击抽签按纽,以完成抽签操作。抽签完全是随机的,与抽签时间先后无关,不参加抽签者视为自动放弃。抽不中签的同学可在本阶段选择其它课程,抽不到签,又想上这门课,只能等下学期再选。正选结束后,各开课院应为任课教师打印选课名单。
注意:毕业班学生在此阶段选择毕业学期正常开设的课程。主要包括毕业实习、毕业设计、毕业论文及部分专业必修课、限选课等等。任选课学分不满8个学分的毕业班学生,建议在此阶段选择提前结束的任选课,否则影响毕业。

(二)交流生、进修生、留学生选课阶段
因交流生、进修生、留学生没有教学计划,所以该部分学生务必在此阶段(2011年1月11日-1月15日)选课。其他选课阶段该部分学生无法正常选课。

(三)非毕业班学生试听补退选阶段(详见教务处网站通知)
试听补退选:2010-2011学年第2学期开学第一周为试听周,学生可根据试听情况,最终确定选课结果。补退选为14天,时间安排在开学第2、3周(2011年2月26日8:00至3月11日8:00)。补退选时,学生可对选到的不满意的课程进行改选、补选。选课不足20人的全校任选课程、不足10人的专业限选课停止开设,由学院通知任课教师。试听补退选结束后,学校将不再对非毕业班学生开放选课系统。
(四)毕业班学生毕业前补考选课阶段(详见教务处网站通知)
毕业班学生选课时间为7天(2011年3月14日-3月21日)。毕业班学生可在此阶段选择重考课程。重考课程不能超过25学分。为了便于对学生进行重考选课学分控制,毕业生重考选课时,学校将暂时屏蔽毕业生选择的毕业学期课程,重修选课结束后,予以恢复。所有毕业班重考课程课序号均为“760”。学校将根据毕业生选课结果,于2010-2011第2学期14周之前组织毕业班补考。不选课参加考试者成绩无效。
二、选课特殊问题处理
(一)非毕业班学生重修、重考课程和补修课程选课
非毕业班学生重修选课安排在补退选阶段进行,学生所选择的重修课程不应与所选其他课程时间冲突。若冲突,可选择自学重修。
因交流、休学、转专业等原因,需要补修部分课程,又因上课时间冲突无法选课补修的,学校将开设课序号为“770”的补修课程,学生应在规定的选课期间内,选择该课程。选课结束后,学校将对补修课程进行处理:
(1)重修选课人数不足10人的770课程,若该课程为本学期正常开设课程,则系统将自动将选择该课程的学生分配到本学期的课程中去,不再单独组班;若该课程不是本学期正常开设的课程,系统将自动删除该门课程和选课结果,本学期不再开设;
(2)重修选课人数超过10人的770课程,教务处将统一安排上课时间和地点,并在网上进行公示,学生可在指定时间到制定地点上课。
(二)欠费学生选课
目前学生选课系统与缴费系统已经联网,选课权限由学校计划财务处控制,欠费学生只有缴费后才能选课,请欠费学生在选课前联系学校财务处进行缴费,并按时选课;超过选课时间交费的学生,将无法选课。交费电话为64534,交费成功10分钟后,学生可登录选课系统在规定时间内进行选课。
(三)通识核心课选课
根据教学计划,2010级开设通识核心课,具体课程详见附件。本学期开设的通识核心课程仅面向2010级理、工、医科学生,学生可根据自己的时间安排选择一门课程。其他学科学生不需选择。
(四)不允许跨专业选课
为保证教学计划与成绩库数据的一致,从2010-2011-2学期开始不允许跨专业选课。学生应认真核对自己的学籍信息是否与实际专业一致,以免出现无法正常选课的情况。选课结束后,选课系统将刷新课程属性,对于课序号小于“900”的课程刷新属性后课程属性仍未“任选”的,系统将自动删除选课结果。请同学们一定认真核对选课结果,慎重选择。
注:有关教务管理的各种信息,请同学们及时查询教务处(本科教育)网页。学生在选课过程中如有疑问,请咨询各学院教务老师。联系方式见下表:
                                              教务处
                                            2010年12月24日
山东大学教学管理人员联系电话一览表
单位
姓名
联系电话
单位
姓名
联系电话
学校教务科
马金平 顾乃静
64766
中韩班
王立莉
64961
交流生选课
申树新
66086
能源学院
    侯若荣 靳梅
92428
哲社学院
黄立清
77007
电气学院
房 玲  
92804
经济学院
徐淑梅 杨晓静 单文静
64223
土建学院
姚军
93861
政治学院
葛双林
75117
环境学院
常宏文
62949
法学院
贺晓霞 李燕燕
78653
公卫学院
  马絮飞
80186
文学院
于海燕
61227
医学院
隗晓红 朱慧娟 李晶晶
82710、82525
艺术学院
刘淑美
75519
口腔学院
   芮艳华
82971
外语学院
董 重 李萍扬 李泉
77688
护理学院
  王承芳
82520
历史学院
王 娟
65488
药学院
  张泰松
81148
数学院
张玉敏  刘京慧
61278
管理学院
苏淑香  于长山  肖研
62185、64618
物理学院
殷秀琴
75808
马克思学院
孟 鹏
61178
化学院
刘英
69664
体育学院
张 敏  周 征
95574
信息学院
蒋霞 李海玮 唐娟娟  王晓梅
61582
软件学院
董立新  龚 莉
91608
计算机学院
王慧玲  
91815
大外部
于 洁
69079
生命学院
姜扬 刘丽芹
64839
图书馆
宋西贵
95672
材料学院
马利芹  杨 艳
92815
形势与政策
崔 颖
61758
机械学院
陈 芝  韩 伟
96050
工程训练中心
李 莹
58612
控制学院
王凤杰  宋尧玉
92625
军事教研室
王化亮
64751
泰山学堂
刘振美
62282
注:1、附件课程清单中上课节次栏已涂红,请同学们注意,第一位数代表星期,第二位数代表节次。比如:15,代表周一第5大节;全天共分为五大节。
2、此课程清单仅供参考,选课以选课系统数据为准。具体步骤参考如下:进入山东大学教务处主页——〉点击右上方学生选课查询”——〉进入学生信息系统登陆界面,点击左侧选课栏目下的本学期课程查询进行模糊查询。


请点击图标下载浏览:

附件1:选课注意事项

附件2:必修课

附件3:限选课

附件4:任选课

附件5:民族预科

附件6:日语、俄语小语种

附件7:大学英语

附件8:2010级通识核心课(2010级理、工、医选,每人限选一门)

附件9:免听申请表


相关专题: 专题信息无

相关信息无
[/td][td=1,1,255 height=20][/td][td=1,1,214 height=20]将本信息发给好友 打印本页
function CheckFormUserLogin(){    if(document.UserLogin.UserName.value=="")    {        alert("请输入用户名!");        document.UserLogin.UserName.focus();        return false;    }    if(document.UserLogin.Passwd.value == "")    {        alert("请输入密码!");        document.UserLogin.Passwd.focus();        return false;    }}    // Begin morelink      function morelink(morelink)      {        url = 'MoreLink.asp?linktype=1';        window.open(url,morelink);      }    // End morelink--> // Begin linkreg      function linkreg(linkreg)      {        url = 'LinkReg.asp';        window.open(url,linkreg);      }    // End linkreg-->// Begin vote      function vote(vote)      {        url = 'Vote.asp?stype=view';        window.open(url,vote);      }    // End vote-->// Begin adduser      function adduser(adduser)      {        url = 'AddUser.asp';        window.open(url,adduser);      }    // End adduser-->// Begin getpwd      function getpwd(getpwd)      {        url = 'GetPwd.asp';        window.open(url,getpwd);      }    // End getpwd-->
用户: 密码:    
[山东大学教务处网络办公系统]  V1.1 S Build2004
| 关于网站 | 版权声明 | 网站地图 | 联系我们 | 处长信箱 | 帮助中心 |
页面执行时间:234.375毫秒
评价一下你浏览此帖子的感受

精彩

感动

搞笑

开心

愤怒

无聊

灌水
离线游星
发帖
6643
啄木币
135
鲜花
830
只看该作者 1楼 发表于: 2010-12-27
我通选课和限选课全部选够学分了,必选课不用自己选,所以今年应该是用不着选课系统了
快速回复
限100 字节
 
上一个 下一个