EN
이 콘텐츠는 한국어로 제공되지 않아 영어 버전으로 표시됩니다.
이 항목은 아직 평가되지 않았습니다.- 이 항목 평가

actionURL property

Gets the URL of a Jump List item that is removed.

This property is not supported for Windows Store apps built for Windows using JavaScript.

Internet Explorer 9

Syntax

JavaScript

p = object.actionURL

Property values

Type: String

the URL of the Jump List item.

Remarks

The onmssitemodejumplistitemremoved event is raised on two conditions:

  1. The msSiteModeShowJumpList method was called
  2. An item has been removed from the Jump List since the previous invocation of msSiteModeShowJumpList

The action URL that is returned in this event property is the same URL that is set by the pinned site with msSiteModeAddJumpListItem.

Examples

The following script demonstrates how to attach an event handler and respond to the user that removes a Jump List item in a pinned site.


function removedItemHandler(evt)
{
    alert("Item removed from Jump List: " + evt.actionURL);
}

document.addEventListener('mssitemodejumplistitemremoved', removedItemHandler); 

See also

MSSiteModeEvent
event
Reference
msSiteModeAddJumpListItem
onmssitemodejumplistitemremoved

 

 

Send comments about this topic to Microsoft

Build date: 1/23/2013

커뮤니티 추가 항목

추가
© 2013 Microsoft. All rights reserved.