如何在新选项卡中打开DIV标记内的内容

时间:2015-10-23 07:23:34

标签: javascript jquery html

$('.menu div.profile-btn').on('click', function () {
    $('.mainservice-page').fadeIn(1200);
}

上面的脚本成功打开div .mainservice-page的内容,但我想在新标签中打开它们。

我该怎么做?

提前致谢。

1 个答案:

答案 0 :(得分:5)

你可以这样做:

function newWindow_method_1() {
  var wi = window.open();
  var html = $('.mainservice-page').html();
  $(wi.document.body).html(html);
}
OR
function newWindow_method_2() {

  var html = $('.mainservice-page').html();
  window.open(html, "__new", "width=1000,height=1000");

}

$('.menu div.profile-btn').on('click', function () { 
  newWindow_method_1();

 // OR

 // newWindow_method_2();

});

希望这会对你有所帮助。