使用JQuery打开一个弹出窗口并打印

2023-10-01前端开发问题
23

本文介绍了使用JQuery打开一个弹出窗口并打印的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

不久前,我使用 jQuery 创建了一个灯箱插件,它将链接中指定的 url 加载到灯箱中.代码很简单:

A while back I created a lightbox plugin using jQuery that would load a url specified in a link into a lightbox. The code is really simple:

$('.readmore').each(function(i){
    $(this).popup();
});

链接看起来像这样:

<a class="readmore" href='view-details.php?Id=11'>TJ Kirchner</a>

该插件还可以接受宽度、高度、不同 url 和更多要传递的数据的参数.

The plugin could also accept arguments for width, height, a different url, and more data to pass through.

我现在面临的问题是打印灯箱.我进行了设置,使灯箱顶部有一个打印按钮.该链接将打开一个新窗口并打印该窗口.这一切都由灯箱插件控制.这段代码是这样的:

The problem I'm facing right now is printing the lightbox. I set it up so that the lightbox has a print button at the top of the box. That link would open up a new window and print that window. This is all being controlled by the lightbox plugin. Here's what that code looks like:

$('.printBtn').bind('click',function() {
    var url = options.url + ( ( options.url.indexOf('?') < 0 && options.data != "" ) ? '?' : '&' ) + options.data;
    var thePopup = window.open( url, "Member Listing", "menubar=0,location=0,height=700,width=700" );
    thePopup.print();
});

问题是脚本似乎没有等到窗口加载.它想在窗口出现的那一刻打印.结果,如果我在打印对话框中单击取消",它将一次又一次地弹出,直到窗口加载为止.第一次尝试打印时,我得到了一个空白页.那可能是因为窗口没有完成加载.

The problem is the script doesn't seem to be waiting until the window loads. It wants to print the moment the window appears. As a result, if I click "cancel" to the print dialog box, it'll popup again and again until the window loads. The first time I tried printing I got a blank page. That might be because the window didn't finish load.

我需要找到一种方法来更改先前的代码块,以等待窗口加载然后打印.我觉得应该有一个简单的方法来做到这一点,但我还没有找到它.要么这样,要么我需要找到一种更好的方法来打开弹出窗口并从父窗口中的灯箱脚本打印,而无需在弹出窗口中交替网页代码.

I need to find a way to alter the previous code block to wait until the window loads and then print. I feel like there should be an easy way to do this, but I haven't found it yet. Either that, or I need to find a better way to open a popup window and print from the lightbox script in the parent window, without alternating the webpage code in the popup window.

推荐答案

你应该把 print 函数放在你的 view-details.php 文件中,并在文件加载后调用它,或者使用

You should put the print function in your view-details.php file and call it once the file is loaded, by either using

<body onload="window.print()"> 

$(document).ready(function () { 
  window.print(); 
});

这篇关于使用JQuery打开一个弹出窗口并打印的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

js删除数组中指定元素的5种方法
在JavaScript中,我们有多种方法可以删除数组中的指定元素。以下给出了5种常见的方法并提供了相应的代码示例: 1.使用splice()方法: let array = [0, 1, 2, 3, 4, 5];let index = array.indexOf(2);if (index -1) { array.splice(index, 1);}// array = [0,...
2024-11-22 前端开发问题
182

layui中表单会自动刷新的问题
layui中表单会自动刷新的问题,因为用到layui的表单,遇到了刷新的问题所以记录一下: script layui.use(['jquery','form','layer'], function(){ var $ = layui.jquery, layer=layui.layer, form = layui.form; form.on('submit(tijiao)', function(data){ a...
2024-10-23 前端开发问题
262

JavaScript小数运算出现多位的解决办法
在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会...
2024-10-18 前端开发问题
301

jQuery怎么动态向页面添加代码?
append() 方法在被选元素的结尾(仍然在内部)插入指定内容。 语法: $(selector).append( content ) var creatPrintList = function(data){ var innerHtml = ""; for(var i =0;i data.length;i++){ innerHtml +="li class='contentLi'"; innerHtml +="a href...
2024-10-18 前端开发问题
125

JavaScript(js)文件字符串中丢失"\"斜线的解决方法
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转...
2024-10-17 前端开发问题
437

layui中table列表 增加属性 edit="date",不生效怎么办?
如果你想在 layui 的 table 列表中增加 edit=date 属性但不生效,可能是以下问题导致的: 1. 缺少日期组件的初始化 如果想在表格中使用日期组件,需要在页面中引入 layui 的日期组件,并初始化: script type="text/javascript" src="/layui/layui.js"/scrip...
2024-06-11 前端开发问题
455