js代碼: ...
js代碼:
// form 跳轉 gotourl//跳轉的頁面 options json格式參數 function FromGoTo(gotourl, options) { var inputhtml = ""; for (var attr in options) { var inputname = attr; var inputvalue = options[attr]; inputhtml += "<input style=\"visibility: hidden;\" type=\"text\" name=\"" + inputname + "\" value=\"" + inputvalue + "\" />" } var fromhtml = "<form id=\"subimtFromGoTo\" method=\"post\" action=\"" + gotourl + "\" style=\"display:none;\" target=\"_blank\">" + inputhtml "</form>"; $("#subimtFromGoTo").remove(); $("body").append(fromhtml); $("#subimtFromGoTo").submit(); }
function Preview() { var news_title = $("input#txtTitle").val().trim(); var news_postdate = $("input#txtDate").val().trim(); var news_content = CKEDITOR.instances["div_content"].getData().trim(); var options={"title":news_title,"postdate":news_postdate,"content":news_content}; var gotourl="http://" + window.location.host + "/BaseAdmin/PrevNews.aspx"; FromGoTo(gotourl, options); }