05 2012 档案

摘要:只需在源代码中加入下面加粗的代码:<embed runat="server" id="embed1" src="2.jpg"type="audio/x-pn-realaudio-plugin" console="chip1"controls="imagewindow" width=320 height=240 autostart=true align="middle"></embed>然后再对应的.cs程序中响应事件(比如butto 阅读全文
posted @ 2012-05-21 11:02 jake2011 阅读(786) 评论(0) 推荐(0)
摘要:原文地址:适用js数组存放键值对map作者:枫悬//自定义Map对象function Map(){this.keys = new Array();this.data = new Array();this.put = function(key,value){if(this.data[key] == null){this.keys.push(value);}this.data[key] = value;};this.get = function(key){return this.data[key];};this.remove = function(key){this.keys.remove(key 阅读全文
posted @ 2012-05-13 22:44 jake2011 阅读(4060) 评论(0) 推荐(0)