Share via


SP. Propriété ClientContext.site (sp.js)

Obtient la collection de sites associée au contexte client.

**Dernière modification :**mardi 25 juin 2013

**S’applique à :**apps for SharePoint | SharePoint Foundation 2013 | SharePoint Server 2013

var value = SP.ClientContext.get_site()

Valeur renvoyée

Type : SP Sites
la collection de sites associée au contexte client.

Exemple

var clientContext;
var siteCollection;

// Make sure the SharePoint script file 'sp.js' is loaded before your
// code runs.
SP.SOD.executeFunc('sp.js', 'SP.ClientContext', sharePointReady);

// Create an instance of the current context and get the site collection.
function sharePointReady() {
    clientContext = SP.ClientContext.get_current();
    siteCollection = clientContext.get_site();

    clientContext.load(siteCollection);
    clientContext.executeQueryAsync(onRequestSucceeded, onRequestFailed);
}
function onRequestSucceeded() {
    alert('URL of the root website: ' + siteCollection.get_url());
}
function onRequestFailed(sender, args) {
    alert('Error: ' + args.get_message());
}

Voir aussi

Autres ressources

Objet SP.ClientContext (sp.js)