日期:2014-05-16 浏览次数:20373 次
if(typeof document.selection !== "undefined"){//IE
???? $("#commentTextarea").focus();
???? document.selection.createRange().text = "insertText";
??? }else{
???? $("#commentTextarea").val($("#commentTextarea").val() + "insertText").focus();
??? }
就是这么简单!