form 表單提交後實現頁面不跳轉

2021-08-09 09:30:10 字數 1704 閱讀 8442

class reporttime extends  egret.displayobjectcontainer

private addtiem()

//格式化日期:yyyy-mm-dd

public formatdate(date)

if(myweekday < 10)

return (myyear+"-"+mymonth + "-" + myweekday); }

public formatreportdate(dates,specific)

if(myweekday < 10)

if(specific == 1)

return (mymonth + "-" + myweekday + " "+globalvariable.getlangday(myday) );

} public getcurrentdate()

if(myweekday < 10)

let time = this.now.getfullyear()+"-"+mymonth+"-"+myweekday;

return time;

} //獲得某月的天數

public getmonthdays(mymonth)

//獲取昨天的日期

public getyesterday(thistime)

//獲取明天的日期

public gettomorrow(thistime)

if(myweekday < 10)

let tomorrow = time.getfullyear()+"-" + mymonth + "-" + myweekday;

return tomorrow;

} //獲得本季度的開始月份

public getquarterstartmonth()

if(28)

return quarterstartmonth;

} //獲取七天前的日期

public getsevendaysdate(index)

if(myweekday < 10)

let time = newdate.getfullyear()+"-"+mymonth+"-"+myweekday;

return time; }

//獲得本週的開始日期

public getweekstartdate()

//獲得本週的結束日期

public getweekenddate()

//獲得上週的開始日期

public getlastweekstartdate()

//獲得上週的結束日期

public getlastweekenddate()

//獲得本月的開始日期

public getmonthstartdate()

//獲得本月的結束日期

public getmonthenddate()

//獲得上月開始時間

public getlastmonthstartdate()

//獲得上月結束時間

public getlastmonthenddate()

//獲得本季度的開始日期

public getquarterstartdate()

//或的本季度的結束日期

public getquarterenddate()

}

action提交form表單後不跳轉

正常的form表單提交後頁面都會跳轉,為了防止頁面跳轉,可使用jquery的ajaxsubmit來防止跳轉,可使頁面保持原樣不變 1.首先引入以下檔案 必須 必須 非必須2.使用方法 提交到當前伺服器 function submitform return false 必須返回false,否則表單會自...

CGI表單提交實現頁面不跳轉問題

在做嵌入式的專案,在做的過程中遇到乙個這樣的問題,就是在單擊按鈕後資料隱藏傳輸,後觸發乙個程式,而頁面不需要跳轉。具體解決辦法如下 用乙個隱藏的iframe iframe name server style display none src iframe form action 應用程式路徑 met...

使用母版頁面後獲取Form表單提交值

當使用模板頁的時候,在內容頁中用id的方式訪問不到內容,他用樣跟程式後,獲得如下的內容 string s this.request.form ctl00 contentplaceholder1 ddlthemes trim 就可以了。但是 ctl00 是個什麼東西呢?據查,在使用了母版的子頁面裡,母...