Write Content To New Window with JQuery

前端 未结 4 735
名媛妹妹
名媛妹妹 2020-11-30 03:08

I have a web page with a DIV element in it. When a user clicks \"print\", I want to print the contents of that div. Please note, I only want to print the contents of the DIV

4条回答
  •  旧巷少年郎
    2020-11-30 03:39

    file1:

    function find(input){
        return $(input);
    }
    
    function printClick() {
      var w = window.open();
      var html = $("#divToPrintID").html();
    
      // how do I write the html to the new window with JQuery?
    }
    

    and in the second file do that:

    var html = window.opener.find("#divToPrintID").html();
    

提交回复
热议问题