我必须在加载Spotfire分析时执行脚本。 我用这个方法:
的JScript :
$(function () {
function executeScript() {
$('#hiddenBtn input').click();
}
$(document).ready(function(){executeScript()});
});

HTML:
<Span style="display:none" id="hiddenBtn">
<SpotfireControl id="f8322a6109af43fb935ad6e7bcb1f1fc" /></span>
&#13;
if Document.Properties["OpenedYet"] == False:
Document.Properties["OpenedYet"] = True
## Script you are trying to run on open here
BUT
事件$(document).ready()持续不断地执行FIRE并连续执行脚本。 我尝试使用$(document).load()或$(window).load(),但事件从未被触发过。 有一种方法可以在加载时执行 ONCE 脚本吗?