2015-05-27 145 views
0

我正在將Magento 1.3模板移動到Magento 1.9。我必須修復很多小錯誤,但這對我來說太複雜了。Magento checkout.setMethod():未捕獲TypeError:無法讀取null的屬性'style'

當我在結賬的onpage和選擇購買作爲嘉賓,並嘗試點擊鏈接:

<a href="javascript:void(0);" onclick="checkout.setMethod();" id="onepage-guest-register-button" type="button" class="button">weiter zum nächsten Schritt</a> 

然後出現以下錯誤:

Uncaught TypeError: Cannot read property 'style' of null

Element.Methods.hide @ prototype.js:1590

Checkout.setMethod @ opcheckout.js:103onclick @ (index):277

我知道protoype.js沒有找到一個具有特定ID的元素,但我不知道什麼是ID,或者我只是錯了?

回答

1

我解決了這個問題。問題是沒有顯示的元素有錯誤的ID。

相關問題