2021年10月13日 星期三

focus 用法注意

若搭配vue 等前端框架動態產生dom,有時會有時間差,必須確定已產生dom再呼叫focus
ex:
var interval = setInterval(function () {
                                let elem = $('div[name=div組合商品明細').first().find('input').first();
                                if (elem) {
                                    $(elem).focus();
                                    clearInterval(interval);
                                }
                            }, 100);  

沒有留言:

自訂權限驗證機制

// 使用 filter [Route("api/[controller]")] [ApiController] [Authorize] [TypeFilter(typeof(CustomAsyncAuthorizationFilter))] public c...