由于textbox不能触发onblur事件,需要换种方式解决问题,方案如下:

<input type="text" class="easyui-textbox" />  
$(function()  
{  
"input",$("#name").next("span")).blur(function()  
    {  
lert("ok");  
    });  
});  

  

相关文章:

  • 2021-06-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-24
  • 2022-01-15
  • 2022-12-23
  • 2021-07-03
猜你喜欢
  • 2022-12-23
  • 2022-02-15
  • 2022-01-22
  • 2021-09-22
  • 2022-03-06
  • 2022-12-23
  • 2021-04-06
相关资源
相似解决方案