0
插入新元素我想翻譯的原型如下功能:翻譯從原型去jQuery的
function addCommentDump(message, type, info) {
var commentDump = $('comment_dump');
if (!commentDump) {
var container = $('comment_dump_container');
if (!container) {
return;
}
container.insert(commentDump = new Element('div', {
'id': 'comment_dump'
}));
}
if (info) {
message += ': ' + info;
}
commentDump.insert(new Element('span', {
'class': type
}).update(message));
}
到jQuery的一個。這裏是代碼:
function addCommentDump(message, type, info) {
//alert("working.....");
var $commentDump = $('#comment_dump');
if (!$commentDump) {
var $container = $('#comment_dump_container');
if (!$container) {
return;
}
$container.append($commentDump = new Element('div', {
'id': 'comment_dump'
}));
}
if (info) {
message += ': ' + info;
}
$commentDump.append(new Element('span', {
'class': type
}).html(message));
}
我得到一個錯誤:TypeError:非法的構造函數。 在此先感謝您的幫助。