window.location.reload()
使用window.open()d出的d出窗口,刷新父窗口
window.opener.location.reload()
使用window.showDialogd出的模态隐判式窗口
window.dialogArguments.location.reload()
2.javascriptd出窗口的两种实现方式 ---下面给两个d出屏幕居中窗口的例子
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+"pxdialogWidth: "+iWidth+"px
dialogTop: "+iTop+"dialogLeft: "+iLeft+"帆改resizable: nostatus: noscroll: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.userAgentvar 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 =nullwindow.close()
}
}else{
window.close()
}
}
5、定时关闭d出的窗口---设置/清除定时器
复制代码代码如下:
scriptlanguage="JavaScript"
!--
functioncloseit(){
setTimeout("self.close()",100000)//单位是毫秒,这里是100秒
setInterval("self.close()",100000)
window.clearTimeout(me.timer)
window.clearInterval(me.timer)
/script
6.javascriptd出子窗口中传值---通过url传值
复制代码代码如下:
<script language="javascript" type="text/javascript">
function fn_modify(pid){
var ModifyInfo=new Object()
window.showModalDialog("modify_main.asp?pid="+pid,ModifyInfo,"dialogHeight:180pxdialogWidth:300pxdialogLeft:dialogTop:resizable:offcenter:onhelp:offscroll:offstatus: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:
复制代码代码如下:
<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('disabled')">
实例2:
复制代码代码如下:
<input id="mytext" type="text" value="我是能用的">
<input type="button" value="disable" onClick="if (mytext.disabled==false){ mytext.disabled=truemytext.value='我是不能用的'this.value='enable'} else { mytext.disabled=falsemytext.value='我是能用的'this.value='disable'}">
9.页面通过函数提交表单的方法
复制代码代码如下:
function exit(){
selcardForm.action="/NDHotel/queryTroom.do?method=exitSystem"
selcardForm.submit()
}
10.遍历radio方法
复制代码代码如下:
<input id="mode1" type="radio"name="workMode" value="1" checked>
var radios=document.getElementsByName("workMode")
var workMode=""
for(var i=0i<radios.lengthi++){
if(radios[i].checked==true){
workMode=radios[i].value
}
}
11.向select中动态添加option
复制代码代码如下:
<select id="ddlProvince" name="ddlProvince" onchange="cityResult()">
var prov=document.getElementById("ddlProvince")
prov.options.add(new Option("---请选择---",""))
var pArray=zoneIdProvince.split("&")
for(var i=0i<pArray.lengthi++){
var idpArray=pArray[i].split("#")
var sZoneID=idpArray[0]
var sProvince=idpArray[1]
prov.options.add(new Option(sProvince,sZoneID))
}
12.页面中使用prototype ajax提交数据的实现方式(java)
一步:在<head></head>中添加以下js文件链接
复制代码代码如下:
<head>
<script language="JavaScript" src="/NDHotel/js/prototype-1.6.js"></script>
</head>
二步:把prototype-1.6.js文件放到/NDHotel/js/指定的目录中
三步:在<script type="text/javascript"></script>中声明以下调用函数
复制代码代码如下:
<script type="text/javascript">
function editIpSegment(){
var url='/NDHotel/ipsegmentset.do?method=roomChangeNotice'
var pars = 'startip='+startip+'&endip='+endip+'&lindex='+lindex
new Ajax.Request( url, {method: 'get', parameters: pars, asynchronous:false,onComplete:editResult})
}
function editResult(result){
var returnStr = result.responseText
if(returnStr =='fail'){
alert("")
return false
}
}
</script>
四步:实现后台调用
复制代码代码如下:
public ActionForward roomChangeNotice(ActionMapping mapping,
ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
String result = ""
PrintWriter pw = RainPrintWriter.getPrintWriter(response)
try {
NotifyServiceTwo.sendMessage(4, 0)
result = "success"
} catch (Exception e) {
logger.error("roomChangeNotice" + e)
}
pw.write(result)
pw.close()
return null
}
13.js中获取表单的值的方式:
复制代码代码如下:
document.getElementById("lindex").value
document.all.lindex.value//lindex在页面中必须是唯一的
//设置获取焦点
document.getElementById("lindex").focus()
document.all.startip.focus()
//设置失去焦点
document.getElementById("lindex").blur()
document.all.startip.blur()
14.动态添加/删除表格中的行
复制代码代码如下:
<table width="100%" id="tdSearch" name="tdSearch" cellpadding="0" cellspacing="0" align="center">
</table>
//动态生成table的行
var autoId = 0// 自增变量
function addRow(value1,value2){
var highQuery=document.getElementById("tdSearch")
highQuery.insertRow()
var newRow = highQuery.rows[highQuery.rows.length - 1]
newRow.id = "row_" + autoId
newRow.insertCell()
newRow.cells[0].innerHTML = "<input width='200' value='"+value1+"' onchange='changeip("+autoId+")' type='text' id='bIPFrom_"+autoId+"'>-"
newRow.insertCell()
newRow.cells[1].innerHTML = "<input width='200' value='"+value2+"' type='text' id='bIPTo_"+autoId+"'>"
var cell2 = newRow.insertCell()
cell2.innerHTML = "<input class='btn_1word' type='button' class='HQ_BUTTON' value='-' onClick=removeRow('" + newRow.id + "')>"
cell2.setAttribute("class", "yellowCell2")
autoId=autoId+1
}
function removeRow(rowId){
var trRow = document.getElementById(rowId)
//alert(trRow)
//if(rowId!="row_0"){
trRow.removeNode(true)
//}
}
如果你用的是 webbrowser 的话,可以执行js脚本,或毕闷码者出发页面上罩庆的html控件的事件来达到目的:我不知道你的应该,我列两个你参考一下吧
webBrowser1.Document.GetElementById("userid").InnerText = Account
webBrowser1.Document.GetElementById("password").InnerText = textBox2.Text
IHTMLDocument2 id2 = webBrowser1.Document.DomDocument as IHTMLDocument2
IHTMLWindow2 win = id2.parentWindow
win.execScript("CheckAndLogin()", "手哪javascript")
或者执行按钮事件
webBrowser1.Document.GetElementById("card_number").InnerText = Account
webBrowser1.Document.GetElementById("card_password").InnerText = textBox2.Text
HtmlElement elemButton = webBrowser1.Document.GetElementById("select_order")
mshtml.HTMLInputElement button = (mshtml.HTMLInputElement)(elemButton.DomElement)
button.click()
onsubmit="window.open(this.href,'newwindow'带笑埋)return false"这样试蠢蚂一下。
我也是用JAVA开发的。
那你可以直接在JS里写window.open
href后面可以跟参数。然后后台的处理在新URL页面显示时升肆处理。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)