调用jquery的change方法 await 失效

调用jquery的change方法 await 失效

async function aa(){
  await $('#islmk').change();
  console.log("11111");
}
$('#islmk').change(async function(){
   let r = await Promise 接口
   console.log("r",r);
})
会先打印11111 在打印 r 哪位知道咋解决

这个$('#islmk').change()返回的不是Promise,不能使用await接收其值

```javascript

async function aa(){
await $('#islmk').change();
console.log("11111");
}
$('#islmk').change(async function(){
let r = new Promise((resolve,reject)=>{
resolve()
})
console.log("r");

return await r
})```