zhyue93

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);
}

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-12-21
  • 2021-12-04
  • 2021-12-21
猜你喜欢
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-11-29
相关资源
相似解决方案