AOP在 .NET中的七种实现方法Here are all the ways that I can think of to add AOPto your application. This mostly focus on the interception side of things,because...
分类:
Web程序 时间:
2014-12-15 10:22:24
阅读次数:
198
$ie=new-object-com"InternetExplorer.Application"
$ie.navigate("http://www.news.baidu.com/")
$ie.visible=$true
sleep-milliseconds2500
$ID=$ie.Document.getElementById(‘focus-top‘)
$ID1=$ID.getElementsByTagName(‘li‘)
$ID2=$ID1|where{$_.className-contains"hdli..
分类:
其他好文 时间:
2014-12-14 07:12:52
阅读次数:
164
取自《Focus On 3D Terrain Programming》中的一段: 1 //-------------------------------------------------------------- 2 // Name: CIMAGE::LoadUncompress...
分类:
其他好文 时间:
2014-12-13 23:03:28
阅读次数:
241
1,这是一个比较简单的页面,你可以复制下来就可以使用。 jQuery UI 自动完成(Autocomplete) - 默认功能 标签: 2.实战自动填充数据:(1)页面:$("#account_name").focus(functio...
分类:
Web程序 时间:
2014-12-12 22:01:01
阅读次数:
295
1:调用父窗口某一个文件框,获取焦点,parent.window.document.getElementById("roleName").focus();2:关闭父窗口parent.$.ligerDialog.close(); //关闭弹出窗 利用这种方法关闭窗口存在一个问题 parent.$......
分类:
Web程序 时间:
2014-12-12 11:26:06
阅读次数:
290
我们总结过jQery事件中的实例原型对象对外接口和拓展对象,现在我们看看他们是如何进行通信联系的。先来看便捷方法: 1 //调用的还是实例对象下的on()和trigger() 2 jQuery.each( ("blur focus focusin focusout load resize scr.....
分类:
编程语言 时间:
2014-12-11 23:56:32
阅读次数:
285
取自《Focus On 3D Terrain Programming》中的一段: 1 bool CTERRAIN::MakeTerrainFault( int iSize, int iIterations, int iMinDelta, int iMaxDelta, float fFilter ) ...
分类:
其他好文 时间:
2014-12-11 17:15:40
阅读次数:
142
取自《Focus On 3D Terrain Programming》中的一段://--------------------------------------------------------------// Name: CTERRAIN::FilterHeightBa...
分类:
其他好文 时间:
2014-12-11 13:47:00
阅读次数:
118
/* css去掉虚框 */:focus{-webkit-outline-style:none;-moz-outline-style:none;-ms-outline-style:none;-o-outline-style:none;outline-style:none;}/* input */ a,...
分类:
Web程序 时间:
2014-12-11 12:19:03
阅读次数:
214
设置a标签属性outline即可如:a { outline: none;}a:focus { outline: none;}在firefox测试通过,webkit内核浏览器无此问题
分类:
其他好文 时间:
2014-12-10 12:19:15
阅读次数:
202