0

我有一个文本框,我有一个用 jquery 连接到它的 keyup 事件。一切正常,除非用户使用浏览器的自动更正功能。

如果一个词被更正,jquery 不会注册 keyup 事件(或我能告诉的任何其他事件)。

当文本框被自动更正更改时,我怎么能去调用一个事件?

更新

这是完成工作的代码片段

$(function() {

        //two styles of live field
        var style1 = " Youth Congress";
        var style2 = "Youth Congress Of ";

        // #CharterName is the input text
        // #dynamicName is the output span
        function update() {
            if (!$("#rb_NameStyle_Prepend").is(':checked')) {
                $("#dynamicName").html($("#CharterName").val() + style1);
            } else {
                $("#dynamicName").html(style2 + $("#CharterName").val());
            }
        }

        update();

        #These are just radio buttons
        $("#rb_NameStyle_Prepend").change(update);
        $("#rb_NameStyle_Append").change(update);


        // If I can find an event that is called on an autocorrect,
        // I would just add it to the list
        $("#CharterName").keyup(update);
        $("#CharterName").blur(update);
        $("#CharterName").change(update);
    });    
4

1 回答 1

1

一条线!!

我只是将更新事件连接到

document.getElementById("CharterName").oninput = update;

当浏览器更新输入时,我的文本也更新了。

于 2013-06-25T19:35:16.003 回答