javascript备忘

弹出窗口:

window.open('Cla_KqjlAdd.aspx','title','height=300,width=400,top=300,left=400,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no');

关闭窗口:

if(window!=window.top){top.location.href=location.href;}window.top.close();

提交事件:

function __doPostBack(eventTarget, eventArgument) { var theform; if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) { theform = document.forms["Form1"]; } else { theform = document.Form1; } theform.__EVENTTARGET.value = eventTarget.split("$").join(":"); theform.__EVENTARGUMENT.value = eventArgument; theform.submit(); }

你可能感兴趣的:(javascript备忘)