使用jquery后,javascript函数不起作用

时间:2012-04-24 03:58:08

标签: javascript jquery asp.net

我正在使用此jquery对textarea进行拼写检查。拼写检查工作正常,但在使用jquery进行拼写检查后,我的其他javascript函数无效。知道为什么吗?

<script type="text/javascript">
    $Spelling.SpellCheckAsYouType('txt_comment1');
    function showselected() {
        var input1 = document.getElementById('txt_comment1');
        var startPos = input1.selectionStart;
        var endPos = input1.selectionEnd;
        var doc = document.selection;

        if (doc && doc.createRange().text.length != 0) {
            alert(doc.createRange().text);
        } else if (!doc && input1.value.substring(startPos, endPos).length != 0) {
            document.getElementById('txt_addwords').value = input1.value.substring(startPos, endPos);
            //alert(input1.value.substring(startPos, endPos))
        }
    }
</script>

<asp:Button 
    ID="cmd_submit_good" 
    runat="server" 
    Height="38px" 
    OnClientClick="showselected();" 
    onclick="cmd_submit_good_Click" 
    Text="Good Word" 
    Font-Bold="False" 
    Font-Names="Arial" Font-Size="X-Small" 
    Width="80px" />

1 个答案:

答案 0 :(得分:1)

http://forum.jquery.com/topic/calling-a-script-when-button-clicked,我得到了答案 这个链接。 Jquery转换实际文本框,这就是javascript未在原始文本框中执行的原因。