我是jsPDF的新手。我正在尝试将它用于我为我的公司建立的网站,并且已经使用一个基本的例子来更好地理解它。我相信我犯的是一个非常简单的错误,而拥有更多jsPDF经验的人会看到我所缺少的东西。是的,我在Stackoverflow上看了很多其他帖子,但还没有找到答案。我真的很感激任何帮助。
我在Visual Studio 2010中构建了以下内容,并在Google Chrome浏览器中对其进行了测试。我相信我也有最新版本的谷歌浏览器。
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>jsPDF Example</title>
<script type="text/javascript" src="//scripts/jquery-1.7.1.min.js" />
<script type="text/javascript" src="//scripts/jquery-ui-1.8.17.custom.min.js" />
<script type="text/javascript" src="//scripts/jspdf.debug.js" />
<script type="text/javascript" src="//scripts/basic.js" />
<script type="text/javascript">
$(document).ready(function () {
$("#go").click(function () {
var doc = new jsPDF();
doc.text(20, 20, 'Hello world.');
doc.save('Test.pdf');
});
});
</script>
</head>
<body>
<h1>Make a PDF</h1>
<hr />
<input type="button" id="go" value="Make PDF" />
</body>
</html>
网站运行并在构建时不会产生任何错误。当我点击按钮时,没有任何事情发生。