摘要:
完美级:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head> <ti... 阅读全文
摘要:
call 方法 请参阅 应用于:Function 对象 要求 版本 5.5 调用一个对象的一个方法,以另一个对象替换当前对象。 call([thisObj[,arg1[, arg2[, [,.argN]]]]]) 参数 thisObj 可选项。将被用作当前对象的对象。 arg1, arg2, , argN 可选项。将被传递方法参数序列。 说明 call 方法可以用来代替另一... 阅读全文
摘要:
function whoAmI(){alert("I'm "+this.name+" of "+typeof(this));}whoAmI();var bill={name:"BillGates"};bill.whoAmI=whoAmI;bill.whoAmI();var steve={name:"Steve Jobs"};steve.whoAmI=whoAmI;steve.whoAmI();wh... 阅读全文
摘要:
function sing(){with(arguments.callee)alert(author+":"+poem);};sing.author="李白";sing.poem="汉家秦地月";sing();sing.author="李哉";sing.poem="日出汉家天";sing(); 阅读全文
摘要:
注册 | 登录 | 收藏本站 | 设为首页 | RSS订阅 首页首页新闻新闻知识库知识库WebCastWebCast博客博客下载下载服务服务 您现在正在浏览:DotNetEye--知识库 讲解ASP.NET中的Web.config配置文件(新手必看) DotNetEye发表于2009-12-16 来源:DotNetEye标签:WebConfig 花了点时间整理了一下ASP.NET Web.conf... 阅读全文
摘要:
<script type="text/javascript">function copyCode(id){var testCode=document.getElementById(id).value;if(copy2Clipboard(testCode)!=false){alert("生成的代码已经复制到粘贴板,你可以使用Ctrl+V 贴到需要的地方去了哦! ");}}copy2Cli... 阅读全文