码迷,mamicode.com
首页 >  
搜索关键字:click    ( 10709个结果
IDEA快捷键
Ctrl+Shift + Enter,语句完成“!”,否定完成,输入表达式时按 “!”键Ctrl+E,最近的文件Ctrl+Shift+E,最近更改的文件Shift+Click,可以关闭文件Ctrl+[OR ],可以跑到大括号的开头与结尾Ctrl+F12,可以显示当前文件的结构Ctrl+F7,可以查询...
分类:其他好文   时间:2014-08-25 14:48:34    阅读次数:220
JQUERY prop与attr区别
1.  1-9-1前后区别 $(function(){ $(":button").click(function(){ //prop与attr区别 //attr在1.9以后attr没有初始化的.attr("checked")返回都是undefined console.log("prop1="+$(":checkbox:eq(0)").prop("checked")); cons...
分类:Web程序   时间:2014-08-25 13:27:14    阅读次数:196
[转] Fix: Screen Clipping Shortcut In OneNote Not Working After Upgrading To Windows 8.1
RECOMMENDED: Click here to fix Windows errors and optimize system performanceNo doubt, OneNote is yet another useful component of Microsoft‘ productiv...
分类:Windows程序   时间:2014-08-24 23:41:43    阅读次数:689
Uninstall office15 click-to-run extensibility Component
Summary : Uninstall office15 click-to-run extensibility Component,How to resolve Uninstall office15 click-to-run extensibility Component error.Uninsta...
分类:其他好文   时间:2014-08-24 11:31:02    阅读次数:420
Echart饼图、柱状图、折线图(pie、bar、line)加入点击事件
var myChart= echarts.init(document.getElementById('myChart')); myChart.on('click', function (param) { alert('点击了我!'); });Echart事件參数能够去config.js查找
分类:其他好文   时间:2014-08-23 22:49:31    阅读次数:817
jQuery 用each后添加click
mydd = $('.plist');mydd.each(function(i){ $(this).click(function(){ mydl.eq(i).hide("slow"); })});注意:此处 this 指代的是 DOM 对象而非 jQuery 对象。如果...
分类:Web程序   时间:2014-08-23 17:39:11    阅读次数:238
26 个 jQuery使用技巧
1. 禁用右键点击(Disable right-click)$(document).ready(function(){$(document).bind("contextmenu",function(e){returnfalse;});});2. 禁用搜索文本框(Disappearing search...
分类:Web程序   时间:2014-08-22 14:13:48    阅读次数:367
jquery轻松操作CSS样式
$(this).click(function(){if($(this).hasClass(“zxx_fri_on”)){$(this).removeClass(“zxx_fri_on”);}else{$(this).addClass(“zxx_fri_on”);}return false;});添加...
分类:Web程序   时间:2014-08-22 12:52:18    阅读次数:325
jquery 未来元素事件示例 on() delegate() live()
jquery 1.7版后建议使用on()$(document).on("click","#green",function(){$(this).after('小鱼阁');});$(document).delegate("#green", "click", function(){$(this).afte...
分类:Web程序   时间:2014-08-22 12:27:06    阅读次数:154
WPF中异步更新UI元素
XAML界面很简单,只有一个按钮和一个lable元素,要实现点击button时,lable的内容从0开始自动递增。 C#private void button_Click(object sender, RoutedEventArgs e){ for (int i = 0; i ...
分类:其他好文   时间:2014-08-22 00:17:25    阅读次数:181
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!