简体   繁体   中英

javascript jquery: call function with parameters after timeout?

How can I call a function like this with parameters applied to it?

searchTimer = setTimeout(doSearch, 250);

function doSearch(parameter) {

}

Use an anonymous function as a wrapper:

searchTimer = setTimeout(function () {
    doSearch('parameter');
}, 250);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM