2011-03-06 51 views
1

我得到了相同的消息作爲thisjQuery的錯誤在IE:意外的調用方法或屬性

這裏是my page

鉻沒問題

我懷疑下面的代碼可以導致問題

  function update_cost(){ 
       var cost = $("#amount_CPU").val() * CPU_per_unit + 
         $("#amount_RAM").val() * RAM_per_unit + 
         $("#amount_storage").val() * storage_per_unit + 
         $("#amount_traffic").val() * traffic_per_unit; 
       $("#estimated_cost").text("$" + cost); 
      } 

回答

3

您在那裏有一個標籤,上面寫着「estimated_cost」標籤的拼寫錯誤:

<lable id="estimated_cost"></lable><br /> 

那應該是<label>而不是<lable>。 IE不知道「lable」元素是什麼,所以它嚇壞了。

+0

謝謝! > _ <愚蠢,愚蠢的我。 – Miranda 2011-03-06 20:45:48

相關問題