0

为什么以下内容在 IE8 上失败,而不是在 IE10 和 Firefox 上。

该错误是对属性访问方法的意外调用,并且发生在 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>

谢谢

4

1 回答 1

0

您正在添加具有相同 ID 的多个元素。这不受支持,可能会导致您的问题。

于 2013-07-05T00:38:57.813 回答