2013-07-05 75 views
0

爲什麼下面的IE8會崩潰而不是IE10和Firefox?Jquery 1.4.4和IE8失敗

錯誤是對屬性訪問方法的意外調用,發生在prependTo(obj)行。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<script type="text/javascript" src="js/jquery-1.4.4.js"></script> 
<script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script> 
<script> 
$(document).ready(function() { 

    var myCurrentId = "btn_config_snippet_myAppName_myConfigName"; 

    textContainer =$('#configuration_container'); 
    $('<img id="'+ myCurrentId +'" src="images/myImage.png"></img>').prependTo(textContainer); 

    obj = $('#' + myCurrentId); 
    $('<div id="'+myCurrentId +'">FRED</div>').prependTo(obj); 
}); 
</script> 
</head> 
<body> 
    <div id='configuration_container'></div> 
</body> 
</html> 

感謝

回答

0

您要添加具有相同ID的多個元素。這不被支持,可能會導致你的問題。

+0

我對此很新,並堅持支持。我已將行更改爲 \t $('

FRED
').prependTo(obj); 仍然沒有快樂 – bibble235