2009年2月12日

转载一个关于javascript弹出窗口的详解

摘要: 一、 弹出窗口的基本属性设置 参数解释: window.open 弹出新窗口的命令; 'page.html' 弹出窗口的文件名; 'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替; 100 窗口高度; width=400 窗口宽度; top=0 窗口距离屏幕上方的象素值; left=0 窗口距离屏幕左侧的象素值; toolbar=no 是否显... 阅读全文

posted @ 2009-02-12 22:40 Mike Luo 阅读(306) 评论(0) 推荐(0) 编辑

如何在字符串中添加外部参数

摘要: 通过下面的方法,可以在一个string的中加上参数值。 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->string a = "Please input # records."; int b = 50; a = b.ToString(a); ... 阅读全文

posted @ 2009-02-12 12:11 Mike Luo 阅读(445) 评论(0) 推荐(0) 编辑

导航