文章列表
父页面parentHtml中的写法
<form action="jsp/test.jsp" name="testform" id="testform"
method="post" onsubmit="window.open('','childHtml','width:1024px,height:768px,status=yes,
toolbar=no,menubar=no,location=no')" target="childHtml">
去掉o ...
var changeFlag=false;//标识文本框值是否改变,为true,标识已变
$().ready(function(){
//文本框值改变即触发
$("input[type='text']").change(function(){
changeFlag=true;
});
});
/**
* 如果文本框值改变的话,则提示保存
*/
//离开页面时保存文档
window.onbeforeunload = function() {
if(changeFlag ==true){//如果changeFlag的值为tru ...