web组件
海天
lingpipe
展开
-
JavaScript 拖放效果
一个可拖放的JS效果; var isIE = (document.all) ? true : false;var $ = function (id) { return "string" == typeof id ? document.getElementById(id) : id;};var Class = { create: function() { ret转载 2009-11-20 13:46:00 · 415 阅读 · 0 评论 -
WebBrowser组件和MSHTML 在Delphi中的使用
<br />由于项目需要,近来研究了一下WebBrowser组件和MSHTML 在Delphi中的使用,整理了一下这段时间研究的结果,写下来一是方便大家查阅,二也可以加深我自己的记忆.希望能对大家有所帮助… …,同时,如果有更好的处理方式或者我没有提到的问题,请大家也告诉我哦, 咱们一块进步… ...,其中一部分是我从网络中搜集的资料,谢谢那些兄弟们… … <br />MSHTML把HTML页面中的元素封装成了IHTMLInputElement、 IHTMLInputButtonElement、IHTMLI转载 2010-11-24 15:09:00 · 478 阅读 · 0 评论 -
mini版CentOS 安装nginx1.2.7
安装gcc: yum install gcc 安装pcre和openssl:yum -y install pcre-devel openssl openssl-devel安装make: yum -y install gcc automake autoconf libtool make安装nginx: ./configure make make install原创 2013-03-30 09:41:25 · 619 阅读 · 0 评论 -
velocity json 转义问题
当传入velocity的变量为JSON时,velocity会自动将JSON的引号进行转义,处理方法是在变量名前后加上#noescape() ... #end.如#noescape()json:$test#end原创 2015-07-11 08:40:26 · 4782 阅读 · 1 评论 -
iframe自适应高度和宽度
iframe自适应高度和宽度可以通过onload事件来操作,如: function iframLoad(ifm){ try{ $(ifm).height(ifm.contentWindow.document.body.scrollHeight); $(ifm).width(ifm.cont原创 2015-12-24 10:58:33 · 1494 阅读 · 0 评论