奇怪:页面文字不能被选中?页面中未用JS控制
有的页面能被选中,不能选中的页面中都使用了ajaxpro.dll类
使得页面多出脚本
<script type="text/javascript">
<!--
var theForm = document.forms['form1'];
if (!theForm) {
    theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
// -->
</script>
我想应该是这段脚本使得的页面文字不能选中的吧?
我该如何解决呢?高手们 救救我把