修改wp-admin/edit-comments.php文件,在如下代码:
</form>
之前添加:
<script type="text/javascript"> //<![CDATA[ /** * 光标放在最后 $("#文本框ID").textFocus(); * 光标放在第二个字符后面 $("#文本框ID").textFocus(2); */ (function($){ $.fn.textFocus=function(v){ var range,len,v=v===undefined?0:parseInt(v); this.each(function(){ if($.browser.msie){ range=this.createTextRange(); v===0?range.collapse(false):range.move("character",v); range.select(); }else{ len=this.value.length; v===0?this.setSelectionRange(len,len):this.setSelectionRange(v,v); } this.focus(); }); return this; } })(jQuery) jQuery(document).ready(function($){ $('.reply').click(function(){ var atid = '"#' + $(this).parent().parent().parent().attr("id") + '"'; var atname = $(this).parent().parent().parent().find('strong:first').text().replace(/^\s+|\s+$/g,''); $("#replycontent").attr("value","<a href=" + atid + ">@" + atname + " </a>\n").textFocus(); }); }); //]]> </script>
经过测试不行额……
@垃圾站
你的测试问题