欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

EasyUI动态改变输入框width

程序员文章站 2022-04-14 20:22:17
function changeEUIBoxWidth(id, width){ $('#'+id).parent().find($('span:eq(0)')).css('width',width+'px'); $('#'+id).parent().children("span").eq(0).css ......
function changeeuiboxwidth(id, width){  
    $('#'+id).parent().find($('span:eq(0)')).css('width',width+'px');  
    $('#'+id).parent().children("span").eq(0).css('width',width+'px');  
    $.parser.parse('#'+id);  
}