如何在jquery函数中修改全局变量?如果我使用下面的代码,它将显示"0"而不是"15"。
<script type>
theValue=0;
$(document).ready(function(){
theValue=15;
});
</script>
<script type="text/javascript">
document.write(theValue)
</script>
那是因为当你写的时候,(文档)。准备还没发射。的例子,注意它写的是0但是当你点击按钮时它是15