<div class="riga" style="border-top:0;">
<div class="col3" id="txtValoreCatastale">0,00 euro</div>
</div>
<script type="text/javascript">
txtValoreCatastale = $('#txtValoreCatastale');
</script>
看來我得到一個錯誤:
SCRIPT438: Object doesn't support this property or method
show, Row 33 Char 4
即會布羅克(在我的整個原代碼)一些我的腳本! 但是,如果我寫道:
var txtValoreCatastale = $('#txtValoreCatastale');
它完美的工作。
爲什麼會這樣?另一個巨大的bug?
IE和Chrome爲具有ID的每個元素創建一個全局變量。看來你不能直接覆蓋它('window.txtValoreCatastale1 = ...'),但使用'var'似乎繞過了這一點。 – 2012-02-14 10:35:10