解决方案 »

  1.   

    $(dlgShouQuanId).attr("title",_title);
      

  2.   

    我认为这么解决比较好。每次关闭弹窗时候,把div移除,打开时候再添加一个DIV,什么都是新的了。
    function open(_url,_title){var div= $("<div id=\"dlgJiaoXueKeChengShiYongAnRen\""></div>);
    div.appendTo("body");
    $(dlgShouQuanId).dialog({
        title: _title,
        width: 805,
        height: 533,
        cache: false,
        href: _url,
        collapsible: true,
        maximizable: true,
        resizable: true,
        modal: true,
        closed: true
    });
     }
    function close(par){$("#"+par).dialog('open');
    $("#"+par).remove();}
      

  3.   

    不好意思,
    $(dlgShouQuanId).dialog('options').href = _url; 
    $(dlgShouQuanId).dialog('open');
    改成
    $(dlgShouQuanId).dialog('open').dialog('refresh', _url);