日期:2014-05-16  浏览次数:20455 次

js 表单使用总结 jackey

?

1? javascript刷新页面的方法
?????
?? window.location.reload();
??
?? 使用window.open()弹出的弹出窗口,刷新父窗口
????? window.opener.location.reload()
?? 使用window.showDialog弹出的模式窗口
????? window.dialogArguments.location.reload();


2.javascript弹出窗口的两种实现方式 ---下面给两个弹出屏幕居中窗口的例子
?? window.open()方式
?????? function ShowDialog(url) {
?????????? var iWidth=300; //窗口宽度
?????????? var iHeight=200;//窗口高度
?????????? var iTop=(window.screen.height-iHeight)/2;
?????????? var iLeft=(window.screen.width-iWidth)/2;
?????????? window.open(url,"Detail","Scrollbars=no,Toolbar=no,Location=no,Direction=no,Resizeable=no,
???? Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft);
????????? }
???
?? window.showModalDialog方式
???? function ShowDialog(url) {
?????????? var iWidth=300; //窗口宽度
?????????? var iHeight=200;//窗口高度
?????????? var iTop=(window.screen.height-iHeight)/2;
?????????? var iLeft=(window.screen.width-iWidth)/2;
?????????? window.showModalDialog(url,window,"dialogHeight: "+iHeight+"px; dialogWidth: "+iWidth+"px;
???? dialogTop: "+iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no");
???????? }

???? 注意这里的第二个参数,window


3.页面中设置不进行缓存数据的方法

在jsp页面加入如下语句?

<%
????? response.setHeader("Pragma","No-Cache");
????? response.setHeader("Cache-Control","No-Cache");
????? response.setDateHeader("Expires", 0);
%>


4.无提示关闭页面的方法
function CloseWin(){
??? var ua = navigator.userAgent; var ie = navigator.appName=="Microsoft Internet Explorer"?true:false;
??? if(ie){
?var IEversion = parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))));
??? if( IEversion< 5.5){
??? var str = '';
??? document.body.insertAdjacentHTML("beforeEnd", str);
???? document.all.noTipClose.Click();
?? } else {
????? window.opener =null; window.close();
?? }
? }else{
? window.close()
? }
}


5、定时关闭弹出的窗口---设置/清除定时器

scriptlanguage="JavaScript"
!--
functioncloseit(){
setTimeout("self.close()",100000)//单位是毫秒,这里是100秒
setInterval("self.close()",100000)

window.clearTimeout(me.timer);
window.clearInterval(me.timer);
/script


6.javascript弹出子窗口中传值---通过url传值

<script language="javascript" type="text/javascript">
function fn_modify(pid){
??? var ModifyInfo=new Object();
?window.showModalDialog("modify_main.asp?pid="+pid,ModifyInfo,"dialogHeight:180px;dialogWidth:300px;dialogLeft:;dialogTop:;resizable:off;center:on;help:off;scroll:off;status:off")
?Reload();
}
function Reload(){location.href="abc.asp";}
</SCRIPT>


<a href="abc.asp" onClick="fn_modify('这是值')">单击</a>


7.js隐藏/显示表单
document.all("id").style.display=="none";//隐藏
document.all("id").style.display=="";//显示
document.getElementById("bt").style.display=="none"
document.getElementById("bt").style.display==""
id为table,input 的id

8.js控制表单元素有效/失效
document.getElementById("bt").disabled=true;
document.all("Submit1").disabled=true;//失效
document.all("Submit1").disabled=false;//有效

设置/获取元素的值
document.getElementById("labTitle").innerHTML="IP模式";//设置值
document.getElementById("labTitle").innerHTML//获取值
labTitle 为div,span,table的id


?实例1:

[code]<input id="mytext" type="text" value="我是不能用的">
<input type="button" value="disabled" onClick="javascript: document.all.mytext.disabled='false'">
<input type="button" value="enable" onClick="javascript: document.all.mytext.removeAttribute('