领先的中文IT技术网站    IT技术从现在起飞

飞诺旗下: 技术社区 | 在线电子书 | 在线试题 | 资源下载 | 飞诺搜索 | 技术博客
用户名: 密   码:
   飞诺网 加入收藏
飞诺网 Javascript 新闻频道 开发频道 系统频道 服务器 网络频道 网络安全 Java频道 C/C++ PHP开发 电子书 资源下载 社 区 博 客 在线试题
网页设计 FrontPage Dreamweaver html css 网页制作技巧 网页特效 Javascript 色彩原理 设计理念 web技术文章
编程开发 JAVA C/C++ C++ VC C语言 VB C# Delphi Foxpro 汇编 shell编程 游戏开发 软件工程师 WEB开发 PHP ASP Asp.net JSP AJAX CGI JavaScript HTML CSS 数据库 MSSQL Mysql Oracle Access Sybase DB2 sql2005 Office Word Excel Powerpoint Wps 认证考试 二级C语言 三级网络 程序员 网络工程师 思科认证

您当前的位置:飞诺网 >>  网页设计 >>  Javascript >> Javascript系列教程

javascript面试题汇总

www.diybl.com    时间 : 2008-12-10  作者:佚名   编辑:本站 点击:   [ 评论 ]

0000> <li>a</li>
<li>a</li>
<li>a</li>
</ul>
</div>
</body>
</html>

使用注释行的时候,总是提示5.

在一般编程语言中, 参数都是"传值", 假设一个C函数的原型是int Fun(int value);

当你调用这个函数时, Fun函数首先会在自己的函数栈上copy一份参数, 就是这个函数的副本, 当你在Fun外部修改value值, 并不会影响Fun内部的value.

而Javascript的内嵌函数很特殊, 它并不会copy一个参数副本, 所有函数公用一套参数, 所以你在函数外部修改了参数值, 函数内部也会受影响.

这就是为什么你的show函数, 它的z参数是最后一个值, 因为每一次循环, z都被更改了.  传值和传址的问题

内容正文:1.Write   a   small   JScript   to   split   the   following   string   into   two   parts   and   display   each   part   on   the   console   window,   the   function   should   return   the   length   of   the   second   part   of   the   string:   -  
   
  Input   string  
  “Hi:   hello.”  
   
  Split   Char   =   “:”  
   
  The   result   should   output   to   the   screen   all   the   characters   on   the     left   side   of   the   “:”   and   the   second   line   would   be   all   the   character   on   the   right   side   of   the   “:”  
   
  2.IF   you   saw   the   following   statement   in   a   batch   file   what   would   it   do?  
   
  if   /I   "%2"   EQU   "V"   goto   VALIDATION  
   
  1. What   do   the   terms   “Filegroups”,   “components”   and   “setup   types”   mean   in   Installshield   Professional  
   
  2. Given   a   collection   of   files   what   process   would   you   go   through   using   the   three   items   detailed   in   question   1   to   produce   an   installation.  
   
  3. What   do   you   understand   by   the   term   “Maintenance   Mode”   with   regard   to   Installshield   Professional  
   
  4. What   is   the   equivalent   of   a   Component   in   Installshield   Developer.  
  5. Describe   an   installation   you   have   written   with   Installshield   Professional   –   what   did   it   install   ?   did   you   use   customized   dialogues   ?   if   so   how   did   you   do   this   ?   did   the   installation   require   you   to   write   your   own   scripted   functions   ?   if   so   give   an   example.   Did   you   consider   future   upgrades   of   your   applications   –   expand.  
   
  6. What   do   you   know   about   Windows   Installer   based   installations   i.e.   have   you   had   any   exposure   to   creating   them   ?   if   so   expand.   Where   is   the   installation   information   held   for   such   an   installation   ?    

1 2 3 4 5 6
如果图片或页面不能正常显示请点击这里
Javascript系列教程推荐文章

文章评论

BBS社区热贴