jQuery: button实现target为_blank, 点击button弹出新窗口

该方法可适用于跳转下载等


$("#clickGo").click(function () {
	window.open('url', '_blank')
});

你可能感兴趣的:(JS)