- 浏览: 103309 次
- 性别:
- 来自: 武汉
最新评论
-
何校萍:
谢谢 又学到了
js中iframe方法调用 -
hyf002:
添加<![CDMA[]]>??不是<![CD ...
org.xml.sax.SAXParseException: The content of elements must consist of well-form -
hyf002:
还真是这个问题,太不注意了
org.xml.sax.SAXParseException: The content of elements must consist of well-form -
liu3232990:
我的情况和你的很相似,只是我的手动输入用户名和密码都不行
iframe中无法传参数问题
文章列表
oracle字符串转成多列查询
- 博客分类:
- 数据库问题
1,将如下结果
id privilege_id
1 123,234,43532
2 2342,4353,24324
3 3453,463,663
转换成
id privilege_ids
1 123
1 234
1 43532
2 2342
2 4353
2 24324
3 3453
3 463
3 663
2,sql如下
select a.id,a.title,substr(privilege_id,instr(a.privilege_id,',',1,b.num-1) + 1,(instr(a.privilege_id,',',1,b.num)-instr(a.p ...
oracle 递归查询,带排序
- 博客分类:
- 数据库问题
select a.element_id paramId,a.parent_element_id parentId, a.privilege_name text,a.location urls,a.seq_id seqId from interface_element_t a start with a.element_id='800' connect by a.parent_element_id = prior a.element_id
order SIBLINGS by seqid;
说明:不能带distinct
参考http://space.itpub.net/559237/view ...
$("#父窗口元素ID",window.parent.document);
对应javascript版本为window.parent.document.getElementByIdx_x("父窗口元素ID");
取父窗口的元素方法:$(selector, window.parent.document);
那么你取父窗口的父窗口的元素就可以用:$(selector, window.parent.parent.document);
类似的,取其它窗口的方法大同小异
$(selector, window.top.document);
$(selec ...
js中iframe方法调用
- 博客分类:
- web页面问题
1、iframe子页面调用 父页面js函数
window.praent.a();
2、iframe子父页面调用 子页面js函数
document.getElementById('ifrtest').contentWindow.b();
注:ifrtest是iframe框架的id,b()为子页面js函数。contentWindow属性是指定的frame或者iframe所在的window对象,IE下可以省略。
3. A iframe的页面访问B iframe页面的内容。
parent.document.getElementById('B iframe的ID').contentWind ...
阻止js方法继续执行
- 博客分类:
- web页面问题
1.阻止js方法继续执行,功能兼容IE,fireforx,chome的js方法
if (event.stopPropagation){
event.stopPropagation();
}else if (window.event) {
window.event.cancelBubble = true;
}
2.运用
防页面刷新
1,chrome5.0
2,ie7
3,opera10.5
4,safari5.0
三,测试
序号 关闭代码 需要确认 无任何作用 无需确认 测试
1 window.close() IE7 firefox,chrome,
safari Opera Close
2 window.opener=null;
window.open('','_self');
window.close(); firefox IE7,Opera,
chrome,safari Close
3 window.open('','_self');
window.close(); firefox IE7,Opera,
c ...
嵌入的iframe鼠标拖动
- 博客分类:
- web页面问题
1,页面样式嵌入iframe的页面navigation.jsp能挪动
<table id="mainframe" name="mainframe" border="0" width="100%" height="400px" cellpadding="0" cellspacing="0">
<tr id="tr_0" style='margin-top:0;'>
<td align="l ...
oraclre常用函数
- 博客分类:
- 数据库问题
1.oracle中nvl()函数
nvl(arg,value)代表如果前面的arg的值为null那么返回的值为后面的value
2.oracle add_months(time,months)函数可以得到某一时间之前或之后n个月的时间
今天又打开Eclipse那似曾相识的IDE,想了想才发现自己从2007年3月份后几乎再没有使用它。工具就得常用,不用渐渐的就淡忘了。于是import进去个工程,run...,居然是java.lang.OutOfMemoryError: Java heap space的错误,很熟悉的错误信息,可咋就想不起来在哪里设JVM的参数啊。还是百度一下吧。
1,从Intalled JREs里修改;window->Preferences->Java->Installed JREs,选择当前的JRE,然后edit它;在新窗口里设置Default VM Arguments为 -X ...
1,错误现象
java.lang.Exception: UnknownHostException sending request :hospital
2、解决方法
$ORACLE_HOME/sysman/config/emd.properties(例如我的安装路径E:\oracle\product\10.2.0\db_1\20CB8CFEB02D432_ora10\sysman\config\emd.properties)
and
$ORACLE_HOME/<sever_name_SID/sysman/config/emd.properties
You will find a ...
基本的IP地址是分成8位一个单元(称为8 位位组)的32位二进制数。二进制与十进制大家都懂吧。为了方便人们的使用,对机器友好的二进制地址转变为人们更熟悉的十进制地址。IP地址中的每一个8 位位组用0~255之间的一个十进制 ...
1, 错误现象
2, Caused by: java.sql.SQLException: Connection has already been created in this tx context for pool named pxa_crm2. Illegal attempt to create connection from another pool: p_sid
3, at weblogic.jdbc.jts.Driver.getExistingConnection(Driver.java:506)
4, at weblogic.jdbc.jts.Driver.connect(Dri ...
rational rose 2003下载破解
- 博客分类:
- 软件下载破解
FROM:http://blog.csdn.net/fenglibing/archive/2007/08/17/1747693.aspx
这么好的东西,不拿来出分享,我对不起原作者呀。但是我这里不知道作者是谁,感谢在先了。
http://www.21php.com/Rational Rose 2003.rar
http://files.cnblogs.com/lixianhuei/rose2003crack.rar
以 ...
1,问题现象
Struts2前台通过Ajax直接调用Action,此时如果Action抛出了异常并不会跳转到异常界面(已经配置了异常的处理)而是返回了异常页面的所有字符串信息到了前台
2,问题分析
是由于struts2没有抛出异常
3,问题解决方法
public String doSomething() {
try{
........
}catch(Exception e){
log.error("发生错误:"+e.getMessage(), e);
return ajax_erro ...
struts2 jquery ajax 动态请求方法格式
使用action的动态请求:
$.ajax{
type:"POST";
url:actionName!methodName.action;//action的动态请求methodName表示你要请求的action的方法
data://参数
dataType://返回数据类型
}