我无法将变量与 SPservices 中的字符串 String 进行比较

I can not compare a variable with a string String in SPservices

我想在Office 365 SharePoint中根据组隐藏Ribbon,这个用户能够提取用户所属的组,我无法将它与不属于IF的字符串进行比较,以隐藏功能区这是我的代码如果我能帮忙请谢谢。

var Nombre_Grup="";
$(document).ready(function()
    $().SPServices(
        { //inicio de SPservices 
            operation: "GetGroupCollectionFromUser",
            userLoginName: $().SPServices.SPGetCurrentUser(),  
            async: false, 
            completefunc: function(xData, Status)
            {
                $(xData.responseXML).find("Group").each(function()
                                                        {
                                                            Nombre_Grup = $(this).attr("Name");

                                                        });
            }
        });
    console.log(Nombre_Grup);
    if(d == "Usuarios de distribución rápida")
    {
        $('#s4-ribbonrow').hide();
    }           
    else if (Nombre_Grup == "Diseñadores")
    {
        $('#s4-ribbonrow').show();
    }  
   });

使用

Nombre_Grup = $(this).attr("Name").trim();

删除字段中周围的任何空白。