嗨,新朋友,很高兴认识你,欢迎来到我的博客。
存档于 三月, 2011

PHP中使用strip_tags() 去除html标签

strip_tags($str)

jquery call方法和apply方法

call方法: 语法:call([thisObj[,arg1[, arg2[, [,.argN]]]]]) 定义:调用一个对象的一个方法,以另一个对象替换当前对象。 说明: call 方法可以用来代替另一个对象调用一个方法。call 方法可将一个函数的对象上下文从初始的上下文...

jQuery.extend 函数详解

JQuery的extend扩展方法: Jquery的扩展方法extend是我们在写插件的过程中常用的方法,该方法有一些重载原型,在此,我们一起去了解了解。 一、Jquery的扩展方法原型是: extend(dest,src1,src2,src3...); 它的含义是将src1,src...

How-To Style Thickbox Inline Content Correctly

ThickBox is a great library extension for jQuery. I use it often for showing messages and other dialogs on a page. There are 2 things to keep in mind when you want to show inline content (that’s content on the sam...

10 Easy To Implement Flash Based Mp3 Players For Your Website

Flash Mp3 players are cool because they let web developers and bloggers embed music players and build customized JukeBox on the websites. With these online music players, you can add a list of songs easily and embed ...

推荐4个Flash video player

推荐4个Flash video player,这3个播放器均支持flv、H.264(mp4、mov.....)。播放720P、1080P高清视频对电脑硬件是有要求的。 视频压制软件推荐Megui,其压制的H.264(mp4)支持flash video player播放。 3.JW Player JW Player是网上...

10 Jquery Ajax File Uploader Plugins

Creating ajax upload from a raw javascript or jquery is not that simple, when baking a simple website, I personally will use available plugin, so it can save me much time and effort, we have to thank that there a lo...

推荐5个漂亮的jquery主流图表插件

5个jQuery图表(生成)插件评测 大多数的图表插件都是免费用于个人,而商业则收费。不过在中国我们用外国的东西,外国人知道个鸟,但不推荐大家使劲用就行! 1. jQuery Visualize Plugin jQuery Visualize Plugin 是一个非常有用的图表...

15款提高表格操作的jQuery插件

table表格由于它的浏览器兼容性和复杂的标签嵌套方式,可以算是添加样式最困难的对象之一了。大多数前端er都把网页中的table标签替换为div,主要就是因为div要比table更容易添加CSS样式。但是我们在日常应用中仍然要用到table表格,其...

15个Jquery拖拽插件

15个jQuery拖拽插件,让你的网页随鼠标动起来! $.event.special.drag 实现了简单的拖动功能,兼容性强! (mb)ConteinersPlus ConteinersPlus是个强大的jQuery拖拽插件,可以实现拖动、缩放、最大化和最小化。 resizable resizable...

php 对post 过来的变量自动转义

php for win32 默认 magic_quotes_gpc=on 所以会自动转义。你可根据get_magic_quotes_gpc()的返回来决定操作方法,即是否需要执行转义函数 get_magic_quotes_gpc --  Gets the current configuration setting of magic quotes ...

PowerDesigner使用笔记

1 PowerDesigner中Name与Code同步的问题 PowerDesigner中,但修改了某个字段的name,其code也跟着修改,这个问题很讨厌,因为一般来说,name是中文的,code是字段名。 解决方法如下: 1、选择Tools->GeneralOptions...菜单,出现Ge...

Building protobuf examples on Windows with MSVC

The Google Protocol Buffers library has very good documentation. However, as I was following their C++ tutorial, it wasn’t clear how to actually build and make the examples run on Windows, since the tutorial itself...

PHP 大数自动转换为科学计数法

前段时间碰到一个很头疼的问题,就是大于12位的数字在PHP中,会自动转成科学计数法表示。 比如 1234567891234 显示为 1.23456789123E+12 , 最后只能在计算出大数之后,立即用 sprintf(‘%1.0f’, $number) 来格式化。 奇怪的是,在我的...

winSocket编程简单入门例子

//Server.cpp #include #include #include #pragma comment(lib, "ws2_32.lib"); #define PORT 5000 void main() { int port = PORT; WSADATA wsaData; SOCKET sListen, sAccept...

在gbk/gb2312编码中如何使用json_encode/json_decode

JSON 是一种轻量级的数据交换格式,完全语言无关,但是采用了类似于C系列语言的约定,更详细的介绍可以参考:  http://json.org 由于将数组/对象 序列化为JSON字符串的时候基本上只支持 UTF-8/ASCII,而我们现在很多网站出于历史原因...

避免表格table被撑变形的CSS代码

如何避免表格因为图片尺寸或者过长的英文字符而变形撑开,在CSS加入以下代码就可以防止,同时英文单词也会按单词断行,不是按字母这个。我想说的是这个在CSS2.0是不支持的,但是能解决一些实际问题。页面设计不是为了标准检验而设计,...

javascript导致“IE无法打开站点,终止操作”

在IE下,当页面还没有加载完全时,如果正在执行的JS代码中含有使用了document.createElement()或者document.write()的话,很容易引起页面加载失败。导 致提示"internet explore 无法打开internet站点 http://www.xxx.com/xxx.html 已终止...

推荐一个PNG压缩网站

推荐一个PNG压缩网站,压缩比率还是蛮高的,好工具啊! http://www.gracepointafterfive.com/punypng/

php生成gif动画的几个解决方案

GD从版本2.0.29 开始支持生成gif动画,估计php应该很快就会添加该方面的函数。 纯php实现(GIF images into animated GIF with native PHP class) http://www.phpclasses.org/browse/package/3163.html 一个PHP补丁,需要GD2.0.29 以后...