摘要:
使用时直接调用:jQuery(document).bind('keydown', 'k',function (evt){ //此处写按快捷键执行的函数代码 });完整代码如下:/* * jQuery Hotkeys Plugin * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * * Based upon the plugin by Tzury Bar Yochay: * http://github.com/tzuryby/hotkeys 阅读全文
摘要:
今天工作中遇到个小问题,情况如下,当我在后台页面中设置Checkbox的Enable的值为false时,我在前端页面中使用脚本(chk.disabled = false),无法改变disabled的值为falsevar chk = document.getElementById("<%=chkBlog.ClientID %>");chk.disabled =false;解决方法如下:把后台代码chkBlog.Enabled =false;改为chkBlog.InputAttributes.Add("disabled", "disab 阅读全文