版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
-.z3.获得系统,浏览器版本:<script>window.document.write("版本:"+navigator.appName+navigator.appVersion+"browser.")</script>4.去除IE混动条:<bodyscroll="no"><bodystyle="overflow-y:hidden">5.进入,跳出广告:<scriptlanguage="javascript"><!--<!--注意更改文件所在路径-->window.open('.******.','','height=200,width=300,top=0,left=30');//--></script>6.随机数:<%randomize%><%=(int(rnd()*n)+1)%>N为可改变数7.向上混动代码:<marqueedirection="up"scrolldelay="200"style="font-size:9pt;color:*FF0000;line-height:150%;font-style:italic;font-weight:bold"scrollamount="2"width="206"height="207"bgcolor="*FFFF00">hhhhhhhhhhhhhhhhhhh</marquee>8.自动关闭网页:<scriptLANGUAGE="javascript"><!--setTimeout('window.close();',10000);//60秒后关闭//--></script><palign="center">本页10秒后自动关闭,请注意刷新页面</p>9.随机背景音乐:<%randomize%><bgsoundsrc="mids/<%=(int(rnd()*60)+1)%>.mid"loop="-1">可以修改数字,限制调用个数,我这里是60个.10.自动刷新本页面:<script><!--varlimit="0:10"if(document.images){varparselimit=limit.split(":")parselimit=parselimit[0]*60+parselimit[1]*1}functionbeginrefresh(){if(!document.images)returnif(parselimit==1)window.location.reload()else{parselimit-=1curmin=Math.floor(parselimit/60)cursec=parselimit%60if(curmin!=0)curtime=curmin+"分"+cursec+"秒后重刷本页!"elsecurtime=cursec+"秒后重刷本页!"window.status=curtimesetTimeout("beginrefresh()",1000)}}window.onload=beginrefreshfile://--></script>11.ACCESS数据库连接:<%optione*plicitdimstartime,endtime,conn,connstr,dbstartime=timer()'更改数据库名字db="data/dvBBS5.mdb"Setconn=Server.CreateObject("ADODB.Connection")connstr="Provider=Microsoft.Jet.OLEDB.4.0;DataSource="&Server.MapPath(db)'如果你的效劳器采用较老版本Access驱动,请用下面连接方法'connstr="driver={MicrosoftAccessDriver(*.mdb)};dbq="&Server.MapPath(db)conn.OpenconnstrfunctionCloseDatabaseConn.closeSetconn=NothingEndFunction%>12.SQL数据库连接:<%optione*plicitdimstartime,endtime,conn,connstr,dbstartime=timer()connstr="driver={SQLServer};server=HUDENQ-N11T33NB;uid=sa;pwd=*sfeihu;database=dvbbs"Setconn=Server.CreateObject("ADODB.Connection")conn.OpenconnstrfunctionCloseDatabaseConn.closeSetconn=NothingEndFunction%>13.用键盘翻开网页代码:<scriptlanguage="javascript">functionctlent(eventobject){if((event.ctrlKey&&window.event.keyCode==13)||(event.altKey&&window.event.keyCode==83)){window.open('网址','','')}}</script>这里是Ctrl+Enter和Alt+S的代码自己查下键盘的ASCII码再换就行14.让层不被控件复盖代码:<divz-Inde*:2><object***></object></div>#前面<divz-Inde*:1><object***></object></div>#后面<divid="Layer2"style="position:absolute;top:40;width:400p*;height:95p*;z-inde*:2"><tableheight=100%width=100%bgcolor="*ff0000"><tr><tdheight=100%width=100%></td></tr></table><iframewidth=0height=0></iframe></div><divid="Layer1"style="position:absolute;top:50;width:200p*;height:115p*;z-inde*:1"><iframeheight=100%width=100%></iframe></div>15.动网FLASH广告代码:<objectclassid="clsid:D27CDB6E-AE6D-11cf-96B8-0"codebase="download.macromedia./pub/shockwave/cabs/flash/swflash.cab*version=5,0,0,0"width="468"height="60"><paramname=movievalue="images/yj16d.swf"><paramname=qualityvalue=high><embedsrc="images/dvbanner.swf"quality=highpluginspage=".macromedia./shockwave/download/inde*.cgi?P1_Prod_Version=ShockwaveFlash";;;;;;;;;;;;type="application/*-shockwave-flash"width="468"height="60"></embed></object>16.VBS弹出窗口小代码:<scriptlanguage=vbscript>msgbo*"你还没有注册或登陆论坛","0","精品论坛"location.href="login.asp"</script>16.使用FSO修改文件特定容的函数functionFSOchange(filename,Target,String)DimobjFSO,objCountFile,FiletempDataSetobjFSO=Server.CreateObject("Scripting.FileSystemObject")SetobjCountFile=objFSO.OpenTe*tFile(Server.MapPath(filename),1,True)FiletempData=objCountFile.ReadAllobjCountFile.CloseFiletempData=Replace(FiletempData,Target,String)SetobjCountFile=objFSO.CreateTe*tFile(Server.MapPath(filename),True)objCountFile.WriteFiletempDataobjCountFile.CloseSetobjCountFile=NothingSetobjFSO=NothingEndFunction17.使用FSO读取文件容的函数functionFSOFileRead(filename)DimobjFSO,objCountFile,FiletempDataSetobjFSO=Server.CreateObject("Scripting.FileSystemObject")SetobjCountFile=objFSO.OpenTe*tFile(Server.MapPath(filename),1,True)FSOFileRead=objCountFile.ReadAllobjCountFile.CloseSetobjCountFile=NothingSetobjFSO=NothingEndFunction18.使用FSO读取文件*一行的函数functionFSOlinedit(filename,lineNum)iflinenum<1thene*itfunctiondimfso,f,temparray,tempcntsetfso=server.CreateObject("scripting.filesystemobject")ifnotfso.fileE*ists(server.mappath(filename))thene*itfunctionsetf=fso.opente*tfile(server.mappath(filename),1)ifnotf.AtEndofStreamthentempcnt=f.readallf.closesetf=nothingtemparray=split(tempcnt,chr(13)&chr(10))iflineNum>ubound(temparray)+1thene*itfunctionelseFSOlinedit=temparray(lineNum-1)endifendifendfunction19.使用FSO写文件*一行的函数functionFSOlinewrite(filename,lineNum,Linecontent)iflinenum<1thene*itfunctiondimfso,f,temparray,tempCntsetfso=server.CreateObject("scripting.filesystemobject")ifnotfso.fileE*ists(server.mappath(filename))thene*itfunctionsetf=fso.opente*tfile(server.mappath(filename),1)ifnotf.AtEndofStreamthentempcnt=f.readallf.closetemparray=split(tempcnt,chr(13)&chr(10))iflineNum>ubound(temparray)+1thene*itfunctionelsetemparray(lineNum-1)=lineContentendiftempcnt=join(temparray,chr(13)&chr(10))setf=fso.createte*tfile(server.mappath(filename),true)f.writetempcntendiff.closesetf=nothingendfunction20.使用FSO添加文件新行的函数functionFSOappline(filename,Linecontent)dimfso,fsetfso=server.CreateObject("scripting.filesystemobject")ifnotfso.fileE*ists(server.mappath(filename))thene*itfunctionsetf=fso.opente*tfile(server.mappath(filename),8,1)f.writechr(13)&chr(10)&Linecontentf.closesetf=nothingendfunction21.读文件最后一行的函数functionFSOlastline(filename)dimfso,f,temparray,tempcntsetfso=server.CreateObject("scripting.filesystemobject")ifnotfso.fileE*ists(server.mappath(filename))thene*itfunctionsetf=fso.opente*tfile(server.mappath(filename),1)ifnotf.AtEndofStreamthentempcnt=f.readallf.closesetf=nothingtemparray=split(tempcnt,chr(13)&chr(10))FSOlastline=temparray(ubound(temparray))endifendfunction>>>我想分页!--这么长的文章,在这里来个分页多好啊!哈哈<<<1.onconte*tmenu="window.event.returnValue=false"将彻底屏蔽鼠标右键<tableborderonconte*tmenu=return(false)><td>no</table>可用于Table2.<bodyonselectstart="returnfalse">取消选取、防止复制3.onpaste="returnfalse"不准粘贴4.oncopy="returnfalse;"oncut="returnfalse;"防止复制5.<linkrel="ShortcutIcon"href="favicon.ico">IE地址栏前换成自己的图标6.<linkrel="Bookmark"href="favicon.ico">可以在收藏夹中显示出你的图标7.<inputstyle="ime-mode:disabled">关闭输入法8.永远都会带着框架<scriptlanguage="JavaScript"><!--if(window==top)top.location.href="frames.htm";//frames.htm为框架网页//--></script>9.防止被人frame<SCRIPTLANGUAGE=JAVASCRIPT><!--if(top.location!=self.location)top.location=self.location;//--></SCRIPT>10.网页将不能被另存为<noscript><iframesrc=*.html></iframe></noscript>11.<inputtype=buttonvalue=查看网页源代码onclick="window.location="view-source:"+".">12.删除时确认<ahref="javascript:if(confirm("确实要删除吗?"))location="boos.asp?&areyou=删除&page=1">删除</a>13.取得控件的绝对位置//Javascript<scriptlanguage="Javascript">functiongetIE(e){vart=e.offsetTop;varl=e.offsetLeft;while(e=e.offsetParent){t+=e.offsetTop;l+=e.offsetLeft;}alert("top="+t+"/nleft="+l);}</script>//VBScript<scriptlanguage="VBScript"><!--functiongetIE()dimt,l,a,bwhilea.tagName<>"BODY"seta=a.offsetParentt=t+a.offsetTopl=l+a.offsetLeftwendmsgbo*"top="&t&chr(13)&"left="&l,64,"得到控件的位置"endfunction--></script>14.光标是停在文本框文字的最后<scriptlanguage="javascript">functioncc(){vare=event.srcElement;varr=e.createTe*tRange();r.moveStart("character",e.value.length);r.collapse(true);r.select();}</script><inputtype=te*tname=te*t1value="123"onfocus="cc()">15.判断上一页的来源javascript:document.referrer16.最小化、最大化、关闭窗口<objectid=hh1classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"><paramname="Command"value="Minimize"></object><objectid=hh2classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"><paramname="Command"value="Ma*imize"></object><OBJECTid=hh3classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"><PARAMNAME="Command"VALUE="Close"></OBJECT><inputtype=buttonvalue=最小化onclick=hh1.Click()><inputtype=buttonvalue=最大化onclick=hh2.Click()><inputtype=buttonvalue=关闭onclick=hh3.Click()>本例适用于IE17.屏蔽功能键Shift,Alt,Ctrl<script>functionlook(){if(event.shiftKey)alert("制止按Shift键!");//可以换成ALTCTRL}document.onkeydown=look;</script>18.网页不会被缓存<META-EQUIV="pragma"CONTENT="no-cache"><META-EQUIV="Cache-Control"CONTENT="no-cache,must-revalidate"><META-EQUIV="e*pires"CONTENT="Wed,26Feb199708:21:57GMT">或者<META-EQUIV="e*pires"CONTENT="0">19.怎样让表单没有凹凸感.<inputtype=te*tstyle="border:1solid*000000">或<inputtype=te*tstyle="border-left:none;border-right:none;border-top:none;border-bottom:1solid*000000"></te*tarea>20.<div><span>&<layer>的区别.<div>(division)用来定义大段的页面元素,会产生转行<span>用来定义同一行的元素,跟<div>的唯一区别是不产生转行<layer>是ns的标记,ie不支持,相当于<div>21.让弹出窗口总是在最上面:<bodyonblur="this.focus();">22.不要滚动条?让竖条没有:<bodystyle="overflow:scroll;overflow-y:hidden"></body>让横条没有:<bodystyle="overflow:scroll;overflow-*:hidden"></body>两个都去掉.更简单了<bodyscroll="no"></body>23.怎样去掉图片点击后,图片周围的虚线.<ahref="*"onFocus="this.blur()"><imgsrc="logo.jpg"border=0></a>24.电子处理提交表单<formname="form1"method="post"action="mailto:*******."enctype="te*t/plain"><inputtype=submit></form>25.在翻开的子窗口刷新父窗口的代码里如何写.window.opener.location.reload()26.如何设定翻开页面的大小<bodyonload="top.resizeTo(300,200);">翻开页面的位置<bodyonload="top.moveBy(300,200);">27.在页面中如何参加不是满铺的背景图片,拉动页面时背景图不动<STYLE>body{background-image:url(logo.gif);background-repeat:no-repeat;background-position:center;background-attachment:fi*ed}</STYLE>28.检查一段字符串是否全由数字组成<scriptlanguage="Javascript"><!--functioncheckNum(str){returnstr.match(//D/)==null}alert(checkNum("1232142141"))alert(checkNum("123214214a1"))//--></script>29.获得一个窗口的大小30.怎么判断是否是字符if(/[^/*00-/*ff]/g.test(s))alert("含有汉字");elsealert("全是字符");31.TE*TAREA自适应文字行数的多少<te*tarearows=1name=s1cols=27onpropertychange="this.style.posHeight=this.scrollHeight"></te*tarea>32.日期减去天数等于第二个日期<scriptlanguage=Javascript>functioncc(dd,dadd){//可以加上错误处理vara=newDate(dd)a=a.valueOf()a=a-dadd*24*60*60*1000a=newDate(a)alert(a.getFullYear()+"年"+(a.getMonth()+1)+"月"+a.getDate()+"日")}cc("12/23/2002",2)</script>33.选择了哪一个Radio<HTML><scriptlanguage="vbscript">functioncheckme()foreachobinradio1ifob.checkedthenwindow.alertob.valuene*tendfunction</script><BODY><INPUTname="radio1"type="radio"value="style"checked>Style<INPUTname="radio1"type="radio"value="barcode">Barcode<INPUTtype="button"value="check"onclick="checkme()"></BODY></HTML>34.脚本永不出错<SCRIPTLANGUAGE="JavaScript"><!--HidefunctionkillErrors(){returntrue;}window.onerror=killErrors;//--></SCRIPT>35.ENTER键可以让光标移到下一个输入框<inputonkeydown="if(event.keyCode==13)event.keyCode=9">36.检测*个的速度:把如下代码参加<body>区域中:<scriptlanguage=Javascript>tim=1setInterval("tim++",100)b=1varautourl=newArray()autourl[1]="."autourl[2]=""autourl[3]="."autourl[4]="."autourl[5]=".cctv."functionbutt(){document.write("<formname=autof>")for(vari=1;i<autourl.length;i++)document.write("<inputtype=te*tname=t*t"+i+"size=10value=测试中……>=?<inputtype=te*tname=url"+i+"size=40>=?<inputtype=buttonvalue=GOonclick=window.open(this.form.url"+i+".value)><br>")document.write("<inputtype=submitvalue=刷新></form>")}butt()functionauto(url){document.forms[0]["url"+b].value=urlif(tim>200){document.forms[0]["t*t"+b].value="超时"}else{document.forms[0]["t*t"+b].value="时间"+tim/10+"秒"}b++}functionrun(){for(vari=1;i<autourl.length;i++)document.write("<imgsrc="+autourl+"/"+Math.random()+"width=1height=1onerror=auto("+autourl+")>")}run()</script>37.各种样式的光标auto:标准光标default:标准箭头hand:手形光标wait:等待光标te*t:I形光标vertical-te*t:水平I形光标no-drop:不可拖动光标not-allowed:无效光标help:?帮助光标all-scroll:三角方向标move:移动标crosshair:十字标e-resizen-resizenw-resizew-resizes-resizese-resizesw-resize38.页面进入和退出的特效进入页面<meta-equiv="Enter"content="revealTrans(duration=*,transition=y)">推出页面<meta-equiv="E*it"content="revealTrans(duration=*,transition=y)">这个是页面被载入和调出时的一些特效。duration表示特效的持续时间,以秒为单位。transition表示使用哪种特效,取值为1-23:0矩形缩小1矩形扩大2圆形缩小3圆形扩大4下到上刷新5上到下刷新6左到右刷新7右到左刷新8竖百叶窗9横百叶窗10错位横百叶窗11错位竖百叶窗12点扩散13左右到中间刷新14中间到左右刷新15中间到上下16上下到中间17右下到左上18右上到左下19左上到右下20左下到右上21横条22竖条23以上22种随机选择一种39.在规定时间跳转<META-equiv=V="REFRESH"content="5;URL=.51js.">40.网页是否被检索<metaname="ROBOTS"content="属性值">其中属性值有以下一些:属性值为"all":文件将被检索,且页上可被查询;属性值为"none":文件不被检索,而且不查询页上的;属性值为"inde*":文件将被检索;属性值为"follow":查询页上的;属性值为"noinde*":文件不检索,但可被查询;属性值为"nofollow":文件不被检索,但可查询页上的。>>>我想分页!--这么长的文章,在这里来个分页多好啊!哈哈<<<js宝典学习笔记ZT每一项都是js中的小技巧,但十分的实用!1.document.write(");输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5.得到表单中元素的名称和值:document.getElementById("表单中元素的ID号").name(或value)6.一个小写转大写的JS:document.getElementById("output").value=document.getElementById("input").value.toUpperCase();7.JS中的值类型:String,Number,Boolean,Null,Object,Function8.JS中的字符型转换成数值型:parseInt(),parseFloat()9.JS中的数字转换成字符型:("+变量)10.JS中的取字符串长度是:(length)11.JS中的字符与字符相连接使用+号.12.JS中的比较操作符有:==等于,!=不等于,>,>=,<.<=13.JS中声明变量使用:var来进展声明14.JS中的判断语句构造:if(condition){}else{}15.JS中的循环构造:for([initiale*pression];[condition];[upadtee*pression]){insideloop}16.循环中止的命令是:break17.JS中的函数定义:functionfunctionName([parameter],...){statement[s]}18.当文件中出现多个form表单时.可以用document.forms[0],document.forms[1]来代替.19.窗口:翻开窗口window.open(),关闭一个窗口:window.close(),窗口本身:self20.状态栏的设置:window.status="字符";21.弹出提示信息:window.alert("字符");22.弹出确认框:window.confirm();23.弹出输入提示框:mpt();24.指定当前显示的位置:window.location.href="URL"25.取出窗体中的所有表单的数量26.关闭文档的输出流:document.close();27.字符串追加连接符:+=28.创立一个文档元素:document.createElement(),document.createTe*tNode()29.得到元素的方法:document.getElementById()30.设置表单中所有文本型的成员的值为空:varform=window.document.forms[0]for(vari=0;i<form.elements.length;i++){if(form.elements[i].type=="te*t"){form.elements[i].value=";}}31.复选按钮在JS中判断是否选中:document.forms[0].checkThis.checked(checked属性代表为是否选中返回TRUE或FALSE)32.单项选择按钮组(单项选择按钮的名称必须一样):取单项选择按钮组的长度document.forms[0].groupName.length33.单项选择按钮组判断是否被选中也是用checked.34.下拉列表框的值:document.forms[0].selectName.options[n].value(n有时用下拉列表框名称加上.selectedInde*来确定被选中的值)35.字符串的定义:varmyString=newString("Thisislightsword");36.字符串转成大写:string.toUpperCase();字符串转成小写:string.toLowerCase();37.返回字符串2在字符串1中出现的位置:String1.inde*Of("String2")!=-1则说明没找到.38.取字符串中指定位置的一个字符:StringA.charAt(9);39.取出字符串中指定起点和终点的子字符串:stringA.substring(2,6);40.数学函数:Math.PI(返回圆周率),Math.SQRT2(返回开方),Math.ma*(value1,value2)返回两个数中的最在值,Math.pow(value1,10)返回value1的十次方,Math.round(value1)四舍五入函数,Math.floor(Math.random()*(n+1))返回随机数41.定义日期型变量:vartoday=newDate();42.日期函数列表:dateObj.getTime()得到时间,dateObj.getYear()得到年份,dateObj.getFullYear()得到四位的年份,dateObj.getMonth()得到月份,dateObj.getDate()得到日,dateObj.getDay()得到日期几,dateObj.getHours()得到小时,dateObj.getMinutes()得到分,dateObj.getSeconds()得到秒,dateObj.setTime(value)设置时间,dateObj.setYear(val)设置年,dateObj.setMonth(val)设置月,dateObj.setDate(val)设置日,dateObj.setDay(val)设置星期几,dateObj.setHours设置小时,dateObj.setMinutes(val)设置分,dateObj.setSeconds(val)设置秒[注意:此日期时间从0开场计]43.FRAME的表示方式:[window.]frames[n].ObjFuncVarName,frames["frameName"].ObjFuncVarName,frameName.ObjFuncVarName44.parent代表父亲对象,top代表最顶端对象45.翻开子窗口的父窗口为:opener46.表示当前所属的位置:this47.当在超中调用JS函数时用:(javascript:)来开头后面加函数名48.在老的浏览器中不执行此JS:<!--//-->49.引用一个文件式的JS:<scripttype="te*t/javascript"src="aaa.js"></script>50.指定在不支持脚本的浏览器显示的HTML:<noscript></noscript>51.当超链和ONCLICK事件都有时,则老版本的浏览器转向a.html,否则转向b.html.例:<ahref="a.html"onclick="location.href='b.html';returnfalse">dfsadf</a>52.JS的建对象有:Array,Boolean,Date,Error,EvalError,Function,Math,Number,Object,RangeError,ReferenceError,RegE*p,String,Synta*Error,TypeError,URIError53.JS中的换行:\n54.窗口全屏大小:<script>functionfullScreen(){this.moveTo(0,0);this.outerWidth=screen.availWidth;this.outerHeight=screen.availHeight;}window.ma*imize=fullScreen;</script>55.JS中的all代表其下层的全部元素56.JS中的焦点顺序:document.getElementByid("表单元素").tabInde*=157.innerHTML的值是表单元素的值:如<pid="para">"howare<em>you</em>"</p>,则innerHTML的值就是:howare<em>you</em>58.innerTE*T的值和上面的一样,只不过不会把<em>这种标记显示出来.59.contentEditable可设置元素是否可被修改,isContentEditable返回是否可修改的状态.60.isDisabled判断是否为制止状态.disabled设置制止状态61.length取得长度,返回整型数值62.addBehavior()是一种JS调用的外部函数文件其扩展名为.htc63.window.focus()使当前的窗口在所有窗口之前.64.blur()指失去焦点.与FOCUS()相反.65.select()指元素为选中状态.66.防止用户对文本框中输入文本:onfocus="this.blur()"67.取出该元素在页面中出现的数量:document.all.tags("div(或其它HTML标记符)").length68.JS中分为两种窗体输出:模态和非模态.window.showModaldialog(),window.showModeless()69.状态栏文字的设置:window.status='文字',默认的状态栏文字设置:window.defaultStatus='文字
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024版不锈钢管道与阀门维修、保养一体化服务合同
- 2024年水暖安装合同样本
- 2024wps智能办公系统借款合同模板含系统培训服务2篇
- 2024年度城市道路桥梁伸缩缝安装及维修一体化工程合同2篇
- 2024年度重型吊车资产转让与运营服务合同3篇
- 安全环保事故案例
- 安全漏洞分析与修补考核试卷
- 养老护理实操培训课件
- 安全监控系统的安全配置审核与加固考核试卷
- 交通监控设备夜视技术与应用考核试卷
- 2023年鲁迅美术学院附属中学(鲁美附中)中考招生语文数学英语试卷
- 电梯维保人员安全培训课程
- 2024年四川省普通高中学业水平考试(思想政治样题)
- 中储粮西安公司社会招聘试题
- 《犬猫牙科学》课件
- 《ehr系统培训》课件
- 品质部年终总结报告2022
- 库尔勒香梨行业分析
- 易燃液体罐车装卸作业操作规程模版
- 六年级上册必读书目《童年》阅读测试题(附答案)
- 头痛的鉴别诊断
评论
0/150
提交评论