我一直在尝试使用 jquery.printElement 插件,但是当我单击“打印”链接时没有任何反应,除了控制台中的以下错误消息:
未捕获的类型错误:无法读取未定义的属性“歌剧”
我正在使用的代码如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Print</title>
</head>
<body>
<p id="content">Some text to print</p>
<a href="#" id="printIt">Print</a>
<script src="../common/js/jquery-1.10.1.min.js"></script>
<script src="../common/js/jquery.printElement.js"></script>
<script>
$('#printIt').click(function() {
$('#content').printElement();
});
</script>
</body>
</html>
有谁知道为什么会这样?