1、弹出框填写意见不能输入信息伟帽

2、jq: function focusTextarea(){ selectText($("#opinion")[0],0,0); }function selectText(textbox,startIndex,stopIndex){ if(textbox.setSelectionRange){ textbox.setSelectionRange(startIndex,stopIndex); }else if(textbox.createTextRange){ var range=textbox.createTextRange(); range.collapse(true); range.moveStart('character',startIndex); range.moveEnd('character',stopIndex-startIndex); range.select(); } textbox.focus();}

3、jsp:
<tr> <th>夏往审信针材批意见:</th> <td> <textarea rows="4" cols="50" style="width:300px" id="opinion" name="opinion" maxLength="500" onclick="javascript:focusTextarea();"></textarea> </td> </tr>
