Is it possible to use the call SP.Navigation.set_useShared(true) to inherit the top link bar in the javascript to create a sub site?

有帮助吗?

解决方案

You can do it using sp.publishing.js

var webNavSettings = new SP.Publishing.Navigation.WebNavigationSettings(context, currentWeb);
var navigation = webNavSettings.get_globalNavigation(); 
navigation.set_source(3);     
webNavSettings.update();         
context.executeQueryAsync(function(){   alert("Navigation Modification Successful");         },function(sender,args){       alert(args.get_message());       });
许可以下: CC-BY-SA归因
scroll top