我想问用户一个问题,如果他们点击了是按钮,那么他们应该被重定向到另一个页面。
Adobe Acrobat允许我们在pdf中插入JS:
if (app.alert("Do you want to go on page X?", 2, 3) === 4) {
// Make the direct somehow.
}
我认为我们不能在那里使用location
对象。
答案 0 :(得分:1)
请尝试
if (app.alert("Do you want to go on page X?", 2, 3) === 4) {
app.launchURL("http://example.com", true);
}
true
在新的浏览器窗口中打开,默认为false
,会将其加载到Reader中。