1. Business rule 跳转可以使用: action.setRedirectURL(url);

2.ui action 跳转可以使用: g_navigation.open(url,'_blank'); (资料参考: https://docs.servicenow.com/bundle/jakarta-application-development/page/app-store/dev_portal/API_reference/GlideNavigationV3/concept/c_GlideNavigationV3API.html

3.client script 跳转可以使用: 

var url = "sp?id=sc_cat_item&sys_id=69c9f091db15db80d4eb7b088c9619dd&re_call_id="+newValue;

top.window.location = url;

 4.widget client controller 跳转可以使用: $window.location.href ='';