HTML5先行者高级交流群

欢迎加入学习讨论
专注前端,专注网页设计制作及网站开发项目 - (低价承接网站开发项目) QQ:370158739加入收藏RSS
-
2014-05-10 18:07:07
List the UTC Time on a Computer_javascript技巧_
- Description Reports the Universal Time Coordinate (UTC) time on a computer.
Script Code 复制代码 代码如下:var wbemFlagReturnImmediately = 0x10; var wbemFlagForwardOnly = 0x20;
var objWMIServ
-
2014-05-10 18:07:07
List the Codec Files on a Computer_javascript技巧_
- Description
Uses WMI to return information about all the audio and video codec files installed on a computer. Script Code 复制代码 代码如下:var wbemFlagReturnImmediately = 0x10; var wbemFlagForwar
-
2014-05-10 18:07:04
List Installed Hot Fixes_javascript技巧_
- Returns a list of all the hot fixes installed on a computer. Script Code
复制代码 代码如下:var wbemFlagReturnImmediately = 0x10; var wbemFlagForwardOnly = 0x20;
var objWMIService = GetObject
-
2014-05-10 18:07:03
Add Formatted Data to a Spreadsheet_javascript技巧_
- Script Code
复制代码 代码如下:Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True objExcel.Workbooks.Add objExcel.Cells(1, 1).Value = "Test value" objExcel.Cells(1, 1).Fon
-
2014-05-10 18:06:59
类之Prototype.js学习_prototype_
- Prototype.js作为javascript的成功的开源框架,封装了很多好用的功能,虽然官方没提供什么文档,不过在google上一搜,好多相关的文档,不过在学习使用的过程中还是碰到了一些问题,希望熟悉的朋友能多加指点,对于prototype.js学习
-
2014-05-10 18:06:56
jscript之Read an Excel Spreadsheet_javascript技巧_
- Description
Demonstration script that reads the values stored in a spreadsheet named C:/Scripts/New_users.xls. Script Code复制代码 代码如下:Set objExcel = CreateObject("Excel.Application") Set objW
-
2014-05-10 18:06:56
jscript之Open an Excel Spreadsheet_javascript技巧_
- Description
Demonstration script that opens an existing Excel spreadsheet named C:/Scripts/New_users.xls. 复制代码 代码如下:Set objExcel = CreateObject("Excel.Application") Set objWorkbook = objExc
-
2014-05-10 18:06:55
去除图像或链接黑眼圈的两种方法总结_javascript技巧_
- 一、用htc实现。 eye.htc <public:attach event="onfocus" onevent="example()" /><script language="javascript">function example(){this.blur();}</script>
<style> a {behavior:url(eye.htc)} </style>
二
-
2014-05-10 18:06:55
jscript之List Excel Color Values_javascript技巧_
- Description
Demonstration script that displays the various colors -- and their related color index -- available when programmatically controlling Microsoft Excel. Script Code 复制代码 代码如下:set
-
2014-05-10 18:06:53
一个漂亮的下拉列表,去掉了灰色倒三角按钮_表单特效_
- 很漂亮,比较适合女性一类比较温馨的网站 漂亮的下拉框 // ViaSelect Environment Constants var SS_ENV = new Object(); SS_ENV.IE_Version = new Number(((window.navigator.appVersion.split('; '))[1].sp
-
2014-05-10 18:06:52
Add a Table to a Word Document_javascript技巧_
- Demonstration script that retrieves service information from a computer and then displays that information in tabular format in Microsoft Word.复制代码 代码如下:Set objWord = CreateObject("Word.Applic