首页 > 代码库 > easy UI动态赋值

easy UI动态赋值

1,首先怎么清除这个值

$(‘#filegrid‘).datagrid(‘loadData‘, { total: 0, rows: [] });

2,清除后,通过post提交请求,怎么将新植穿进去,这可以通过post的success方法来获取

function displayplayingcms(value){    $("#dlg").dialog(open).dialog(setTitle,正在播放);    $("#dlg").empty(); //清空div空间    $.post(        "/inforelease/getcmsplayingbyids",        {ids:value},        function(data){            $("#dlg").html(data.divstr);        },json);}

 

easy UI动态赋值