$('.menu div.profile-btn').on('click', function () {
$('.mainservice-page').fadeIn(1200);
}
上面的脚本成功打开div .mainservice-page
的内容,但我想在新标签中打开它们。
我该怎么做?
提前致谢。
答案 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();
});
希望这会对你有所帮助。