假设我在一个名为“test”的函数中有一个名为“true”的变量。然后我在一个完全不同的脚本标签中有另一个函数,我想使用我的新函数更改“true”。我怎样才能做到这一点?谢谢。
<script type="text/javascript">
var hello="no";
if(hello=="yes"){
window.onbeforeunload = confirmExit;
function confirmExit()
{
return "Message";
}
}
</script>
<script type="text/javascript">
function show(id) {
$('#' + id).show();
var hello="yes";
}
</script>
它似乎没有工作...