如何从ExtJs中的ajax响应更新“href”

时间:2016-02-25 07:41:34

标签: extjs extjs3

我需要根据Ajax响应更新href元素,并且需要从附加的href

触发click事件

我是按照以下方式做的。但无法从更新后的href触发点击事件。

HTML

<a hidefocus="on" class="x-tree-node-anchor" href="#" tabindex="1" target="contentFrame">Audit</a>

ExtJs的

listeners: {
      click: { 
          fn: function(node,event){
                    Ext.Ajax.request({           
                      url: '/ms/module/external-a/api/'+treeId+'/fetch-child/'+UUID,
                      method: 'GET',
                      success:  function (response) { 
                        var addInfoRes = Ext.util.JSON.decode(response.responseText);                   
                        var additionalInfohref = addInfoRes.href                // "/member/erp/config?node=12";  
                        jQuery("#123").attr('href',additionalInfohref);
                      }
                    });
            }         
        },stopEvent: true

}

1 个答案:

答案 0 :(得分:0)

首先,所有 ID 123 未在<a>代码中定义。

<a hidefocus="on" id="123" class="x-tree-node-anchor" href="#" tabindex="1" target="contentFrame">Audit</a>

其次要触发点击,我们需要在所选元素上使用函数click()

jQuery("#123").click();