摘要: 今天查询表的时候报无效的数字。查看表,都是varchar。 最后发现在进行关联表操作的时候,其中一个id的类型是number。正常情况下,字符串和数字的比较是可以的。这里只能给数字加上to_char解决问题。 出现这个问题,一定是存在number字段,仔细查看 阅读全文
posted @ 2018-06-01 11:01 羲月 阅读(15089) 评论(0) 推荐(0) 编辑
摘要: js中定义函数常用写法是 function name(arg){ //arg则是匿名函数的参数。 //... } 调用函数时的写法是: name(arg); 在js中不方法名的写法(就是匿名函数)//arg则是匿名函数的参数。 function(arg){ //....}匿名函数调用的的写法为 (f 阅读全文
posted @ 2018-05-16 10:44 羲月 阅读(12908) 评论(0) 推荐(2) 编辑
摘要: window.parent.document.getElementById("xxx");获取父窗口的xxx节点$("#myEle", window.parent.document).html(html); 即指明了是在 window.parent.document 中查找 id=myEle 的元素 阅读全文
posted @ 2018-05-14 10:48 羲月 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 报错:Retrieving archetypes:' has encountered a problemAn internal error occurred during:"Retrieving archetypes eclipse 显示如图: 报错信息:检索原型出错,点击“OK”,myeclips 阅读全文
posted @ 2018-05-13 14:57 羲月 阅读(1786) 评论(0) 推荐(0) 编辑
摘要: Enumeration枚举,类似于Iterator.但是不提供对元素的操作功能,只是枚举,遍历。功能是Iterator接口复制,但是不如使用Iterator。 是通过向量的元素,散列表键和哈希表中的值来枚举,支持HashTable、HashMap、Vector. jdk1.8文档里面的说明 Enum 阅读全文
posted @ 2017-12-26 10:17 羲月 阅读(371) 评论(0) 推荐(0) 编辑