开发者

Jquery mobile: Select menus events

开发者 https://www.devze.com 2023-03-22 19:41 出处:网络
I\'m developing a mobile site and i need to do an ajax call when an user close a select menu. i can\'t find the right ev开发者_StackOverflowent (something to know when the user close the select menu).

I'm developing a mobile site and i need to do an ajax call when an user close a select menu. i can't find the right ev开发者_StackOverflowent (something to know when the user close the select menu). can someone help me?


The Blur event would be your best option in this case.

$("#mylist").blur(function(e){
//do stuff
});
0

精彩评论

暂无评论...
验证码 换一张
取 消