2011年10月6日

摘要: $(document).keydown(function(event) { if (event.keyCode == 13) { $('form').each(function() { event.preventDefault(); }); } }); 阅读全文
posted @ 2011-10-06 15:32 hunterqian 阅读(239) 评论(0) 推荐(0)
 
摘要: Vs在win7环境下不能debug有多种原因,一下列出相关解决办法。当运行程序debug某个页面的时候,加入断点的位置总是提示"the source code is different from the original version",真是懊恼呀!没有关系让我们来解决它!1.在vs2008图标上右击选择Properties,然后选择Compatibility tab,勾选掉Run this program in compatibility mode for: 如下图所示:2.检查一下VS2008 ToolBar属性设置3.检查Configuration Manager( 阅读全文
posted @ 2011-10-06 10:08 hunterqian 阅读(3245) 评论(0) 推荐(0)