Monthly Archives: March 2009

flash在div overflow hidden的显示问题

昨天在做项目的时候,要用到一个别的网站的flash(同一家公司的两个网站,所以没有版权问题)。拿到flash的时候,发现这个flash的底部有一条白边: 准备用一个div把这个flash object 包起来,然后设定高度和overflow:hidden把这个白边隐藏掉,在ie下可以,但在firefox下flash会穿越div。 经过一番搜索,找到原因,其实很简单,只要在embed tag上加个属性wmode="transparent" 就解决了,wmode是什么意思呢?官方文档上是这么写的: wmode – Possible values: window, opaque, transparent. Sets the Window Mode property of the Flash movie for transparency, layering, and positioning in the browser. window – movie plays in its own rectangular window on a web page. opaque – the movie hides everything on the page behind it.… Read More »

一个简单的javascript字符计数器

公司一个项目里有发短信功能,要在页面上提示用户还剩多少字符可以输入,当用户输入的字符数超过最大字符限制,则截取最大字符数的数目。代码还是比较简单的,也算是记录一下。 代码如下: HTML部分: <textarea id=”txtContainer” rows=”3″ cols=”40″ ></textarea> <br /> words left: <input id=”txtWordCount” type=”text” readonly=”true” style=”width:40px;” /> javascript部分: <script type=”text/javascript”> function containerKeyupHandler( e ){ var count = “10”; var evt = e || window.event; var elm = evt.target || evt.srcElement; var tex = elm.value; var len = tex.length; var wordCount = document.getElementById(“txtWordCount”); wordCount.value =… Read More »

javascript closure(闭包)的一个示例

今天一个同事看到John Resig 的Pro JavaScript Techniques这本书上的37页上有一段关于闭包的javascript代码,怎么调试都运行不正确,于是和他一起研究了一下,代码是这样的:   // Create a new user object that accepts an object of properties function User( properties ) { // Iterate through the properties of the object, and make sure // that it’s properly scoped (as discussed previously) for ( var i in properties ) { (function(){ //using this here is… Read More »

自定义增加Windows xp IIS的连接数

Windows xp pro带的iis是5.0版的,默认最大连接数是10. 如何增加最大连接数呢? 这样操作: 首先去 http://support.microsoft.com/default.aspx?scid=kb;en-us;301386下载MetaEdit 安装以后,浏览到LM/W3WSVC/MaxConnections节点,把10修改成2000000000就可以啦