码迷,mamicode.com
首页 >  
搜索关键字:click    ( 10709个结果
div 弹出框 点击周围空白处消失
html代码 .... //弹出框内具体内容省略js代码(引入jquery)$(function () { $("#detailMsg").click(function(e){ e= e || window.event; if(e.cancelBubble) e.cancelBubb...
分类:其他好文   时间:2014-08-20 19:20:02    阅读次数:173
Error: Couldn't run process C:/altera/11.0/quartus//sopc_builder/bin/sopc_builder --classic --generate F:/nios-wenjian/hellow/KERNEL.ptf successfully
Under yourQuartus II folder, go to bin->cygwin->bin folder, select the following files in the list below and then right-click and choose Properties.Un...
分类:移动开发   时间:2014-08-20 17:45:02    阅读次数:308
玩转INotifyPropertyChanged和ObservableCollection
本文的代码都是基于WPF的,对于Silverlight,这些技术也同样适用。 (一)INotifyPropertyChanged的使用场合 先写一个最简单的数据绑定,每次点击Button后,TextBlock的值都会自增1。 效果图如下所示: 这里使用了MVVM模式,并把Click事件抽象为了Co....
分类:其他好文   时间:2014-08-20 16:16:02    阅读次数:372
读取Excel文件内容在Web上显示
点击事件代码.cs protected void Button1_Click(object sender, EventArgs e) { string strPath = "d:/test.xls"; string mystring = "Provider=M...
分类:Web程序   时间:2014-08-20 16:09:32    阅读次数:164
windows无边框窗体移动设置
int cx; int cy; private void btnClose_Click(object sender, EventArgs e) { this.Close(); } private void btnClose_MouseLeave(object sender, EventAr...
分类:移动开发   时间:2014-08-20 16:04:02    阅读次数:222
【Leetcode】Reverse Words in a String
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". click to show clarification.C...
分类:其他好文   时间:2014-08-20 13:59:42    阅读次数:229
Event in Zepto
你有想过没,当你监听某个DOM元素的一个事件时,其事件处理函数是如何和该DOM元素关联起来的呢:1 var wp=document.getElementById(‘wrapper’);2 wp.addEventListener(‘click’,function(){3 // event ...
分类:其他好文   时间:2014-08-20 13:53:32    阅读次数:265
jQuery碎语(2) 事件
4、事件 ● 通过方法名给元素绑定事件:$('li').click(function(event){})● 通过bind方法给元素绑定事件:$('li') .bind('click',function(event){}) .bind('click',function(event){}) 可见,通过b...
分类:Web程序   时间:2014-08-20 11:59:52    阅读次数:173
C#获取WIN系统进程信息
private void button1_Click(object sender, EventArgs e) { listBox_thread_list.Items.Clear(); Process[] processes; ...
分类:Windows程序   时间:2014-08-20 01:15:37    阅读次数:284
注册页面基础判定之做法1:js
$(document).ready(function() { $("#regUser").click(function(){if($("#userName").val()==""||$("#userName").val().length16){alert("用户名为空或者长度不符合要求!");re....
分类:Web程序   时间:2014-08-19 23:52:35    阅读次数:243
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!