I'm using a hand-built theme (WP v3.1.3 here), so I imagine it's a tag that I've omitted that's keeping the form from moving.
Some troubleshooting that I've already looked into:
- Script: loading fine, without errors in the console.
- Present: reply URLs referencing comment ID (
?replytocom=2#respond
) - Present:
<ol class="commentlist">
- Present:
<li id="li-comment-2" ...
- Present:
<div id="respond">
encapsulating the comment form - Reply link looks good:
onclick='return addComment.moveForm("comment-2", "2", "respond", "39")'
The JS function in question:
addComment = {
moveForm : function(commId, parentId, respondId, postId) {
var t = this, div, comm = t.I开发者_运维百科(commId), respond = t.I(respondId), cancel = t.I('cancel-comment-reply-link'), parent = t.I('comment_parent'), post = t.I('comment_post_ID');
if ( ! comm || ! respond || ! cancel || ! parent )
return;
t.respondId = respondId;
postId = postId || false;
if ( ! t.I('wp-temp-form-div') ) {
div = document.createElement('div');
div.id = 'wp-temp-form-div';
div.style.display = 'none';
respond.parentNode.insertBefore(div, respond);
}
comm.parentNode.insertBefore(respond, comm.nextSibling);
if ( post && postId )
post.value = postId;
parent.value = parentId;
cancel.style.display = '';
cancel.onclick = function() {
var t = addComment, temp = t.I('wp-temp-form-div'), respond = t.I(t.respondId);
if ( ! temp || ! respond )
return;
t.I('comment_parent').value = '0';
temp.parentNode.insertBefore(respond, temp);
temp.parentNode.removeChild(temp);
this.style.display = 'none';
this.onclick = null;
return false;
}
try { t.I('comment').focus(); }
catch(e) {}
return false;
},
I : function(e) {
return document.getElementById(e);
}
}
The script wasn't happy with the way my theme was concealing the link with id="cancel-comment-reply-link"
-- as seen in the script: cancel = this.I('cancel-comment-reply-link')
-- and was failing because of it.
精彩评论