直接上 Demo:在Safari 上和在Chrome上效果不一致!在Safari上光标跑到最前面了。
1 回答
慕妹3242003
TA贡献1824条经验 获得超6个赞
将Javascript代码改成下面这样解决:
JAVASCRIPTfunction AddQuestionComment(cid, currUser) {
var replyTo = "";
var username = "罗伯特";
if ($("#qCommentEditor").css("display") === "none") {
if (cid !== "") {
if (username === currUser) {
username = "";
}
if (username !== "") replyTo = "@" + username + ": ";
qCommentId = cid;
}
$("#qCommentEditor").attr("style", "display:unset;");
} else {
if (cid !== undefined) {
if (username === currUser) {
username = "";
}
if (username !== "") replyTo = "@" + username + ": ";
qCommentId = cid;
} else {
$("#q_comment").text("评论");
$("#qCommentEditor").attr("style", "display:none;");
}
}
$("#qCommentTextarea").focus().val(replyTo);}$("#qCommentTextarea").focus().val(replyTo);
添加回答
举报
0/150
提交
取消
