自动JQuery点击事件

时间:2018-01-16 20:51:29

标签: jquery

我正在试图找出如何编写点击事件以便在我

之后自动发生
1. select an option from a dropdown.
2. depending on the option, the text of the option gets set as the value of a textbox.
2. set focus into the textbox. 

工作原理是设置文本框值并将光标定位到文本末尾的文本框中。但我无法弄清楚如何自动化单击事件以使光标移动到下一个字段。

我尝试使用focusin如下所示...

<script>     
    jQuery(document).ready(function(){
        jQuery("#textbox").focusin(function() {
            jQuery("#textbox").trigger('click');
        });
    });  
</script> 

当我在函数中包含警报时,会弹出警告以显示我在focusin函数中,但我似乎无法使点击工作。警报只是不断重新弹出。

0 个答案:

没有答案