js input框代码赋值无法监听

平台上实现在modal框中选中商品id 赋值到商品编码栏展示,并通过选中的商品id发起请求获得商品数据

尝试了各种监听无效,终于找到一个可行的方法

在给id input框赋值的时候:

    parent.$('#productCode').focus();
            parent.$('#productCode').val(productCode);
            parent.$('#productCode').blur();
监听事件:
  $(function(){
            $("#productCode").bind("blur change", function() {
                alert(1);
            });
        })
 
posted @ 2020-11-10 14:00  ```天真有邪  阅读(665)  评论(0编辑  收藏  举报