上一页 1 ··· 221 222 223 224 225 226 227 228 229 ··· 232 下一页
摘要: 问题:maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supported by m2e. 这次换了个64位全新笔记本,装了最新的EclipseIndigo版本(v3.7),Maven 3.04,和M2E插件。从SVN服务器上检下来正在开发的项目,出现了红叉,pom.xml报错如下错误:maven-dependency-plugin (goals "copy-dependencies", "unpack") is not sup 阅读全文
posted @ 2013-04-17 11:04 牧之丨 阅读(6542) 评论(0) 推荐(1)
摘要: TextFX,Function List,JSMin,JSLint,Light Explorer,Npp Export,JSON ViewerAlt+H 隐藏行Ctrl+Tab 实现在多个打开的窗口间切换Ctrl+Shift+Q区块注释Ctrl+K行注释(取消Ctrl+Shift+K)文件新建文件 Ctrl+N打开文件 Ctrl+O保存文件 Ctrl+S另存为 Ctrl+Alt+S全部保存 Ctrl+Shift+S关闭当前文件 Ctrl+W打印文件 Ctrl+P退出 Alt+F4编辑撤销 Ctrl+Z恢复 Ctrl+Y剪切 Ctrl+X复制 Ctrl+C删除 Del全选 Ctrl+A列编辑 . 阅读全文
posted @ 2013-04-16 15:05 牧之丨 阅读(99304) 评论(4) 推荐(13)
摘要: Array类可以如下定义: var aValues = new Array(); 如果预先知道数组的长度,可以用参数传递长度 var aValues = new Array(20); ------------------如下2种定义方式是一样的--------1----------- var aColors = new Array(); aColors[0] = "red"; aColors[1] = "green"; aColors[2] = "blue"; alert(aColors[0]); // output "re 阅读全文
posted @ 2013-04-15 17:10 牧之丨 阅读(354) 评论(0) 推荐(0)
摘要: this.formpanel = new Ext.FormPanel({ items : [{ fieldLabel : '代码', name : 'FCode', anchor : '100%', id : 'fid' }, { fieldLabel : '名称', name : 'FName', anchor : '100%' // anchor width by percentage }, { xtype : 'textfield', name : 'F 阅读全文
posted @ 2013-04-15 13:59 牧之丨 阅读(390) 评论(0) 推荐(0)
摘要: bodyStyle :'overflow-x:hidden;overflow-y:scroll', //隐藏水平滚动条,显示用overflow-x:visiblehidden 隐藏scroll :一定有 auto:自动通过这个方法可以显示或隐藏滚动条var form = new Ext.form.FormPanel({frame : true,labelWidth : 80,height : 400,autoScroll : true,bodyStyle : 'overflow-x:hidden; overflow-y:scroll',items : []})E 阅读全文
posted @ 2013-04-15 12:49 牧之丨 阅读(39932) 评论(1) 推荐(0)
摘要: 怎样打开Chrome的开发者工具?你可以直接在页面上点击右键,然后选择审查元素:或者在Chrome的工具中找到:或者,你直接记住这个快捷方式: Ctrl+Shift+I (或者Ctrl+Shift+J直接打开控制台),或者直接按F12。打开的开发者工具就长下面的样子:不过我一般习惯与点左下角的那个按钮,将开发者工具弹出作为一个独立的窗口:下面来分别说下每个Tab的作用。Elements标签页这个就是查看、编辑页面上的元素,包括HTML和CSS:左侧就是对页面HTML结构的查看与编辑,你可以直接在某个元素上双击修改元素的属性,或者你点右键选"Edit as Html&q 阅读全文
posted @ 2013-04-13 14:48 牧之丨 阅读(30978) 评论(5) 推荐(6)
摘要: easyui :实现Tab页面Jqueryui+easywidgets 实现可拖动个性化页面左侧类似淘宝商城菜单使用css实现点击菜单,在新tab页中显示新页面...ok.贴代码:<head><title></title><linkhref="easyui/themes/default/easyui.css"rel="stylesheet"type="text/css"/><linkhref="easyui/themes/icon.css"rel="s 阅读全文
posted @ 2013-04-13 11:25 牧之丨 阅读(4557) 评论(1) 推荐(1)
摘要: 用的column布局,点击一个按钮能添加一行组件,如文本框,有下拉框等。Exmyth 1 /*! 2 * Ext JS Library 3.4.0 3 * Copyright(c) 2006-2011 Sencha Inc. 4 * licensing@sencha.com 5 * http://www.sencha.com/license 6 */ 7 Ext.onReady(function(){ 8 // 添加按钮 9 var newDept_action = new Ext.Action({ 10 ... 阅读全文
posted @ 2013-04-13 11:08 牧之丨 阅读(2638) 评论(0) 推荐(1)
摘要: I.java 字符串分割成字符数组String str="1,2,3,4,5";String s[]=str.split(",");II 如何将字串 String 转换成整数 intA. 有两个方法:1). int i = Integer.parseInt([String]); 或 i = Integer.parseInt([String],[int radix]);2). int i = Integer.valueOf(my_str).intValue(); 注: 字串转成 Double, Float, Long 的方法大同小异.III 如何将整数 i 阅读全文
posted @ 2013-04-13 11:04 牧之丨 阅读(14700) 评论(0) 推荐(0)
摘要: 1.substring 方法定义和用法substring 方法用于提取字符串中介于两个指定下标之间的字符。语法stringObject.substring(start,stop)参数 描述start 必需。一个非负的整数,规定要提取的子串的第一个字符在 stringObject 中的位置。stop 可选。一个非负的整数,比要提取的子串的最后一个字符在 stringObject 中的位置多 1。如果省略该参数,那么返回的子串会一直到字符串的结尾。返回值一个新的字符串,该字符串值包含 stringObject 的一个子字符串,其内容是从 start 处到 stop-1 处的... 阅读全文
posted @ 2013-04-13 11:00 牧之丨 阅读(25232) 评论(1) 推荐(0)
上一页 1 ··· 221 222 223 224 225 226 227 228 229 ··· 232 下一页