<!doctype html>
< html class = "default no-js" lang = "zh-CN" >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< title > QuickPick | VS Code API 中文文档< / title >
< meta name = "description" content = "VS Code API 是一系列你可以在 Visual Studio Code 扩展中调用的 JavaScript API, 这个站点列出了扩展开发者可以使用的所有 vscode api 中文文档,是 vscode 插件开发必备。" >
< meta name = "author" content = "洛竹" >
< meta name = "copyright" content = "洛竹" >
< meta property = "og:title" content = "Vscode Api 中文文档" / >
< meta property = "og:type" content = "docs" >
< meta property = "og:image" content = "https://code.visualstudio.com/favicon.ico" / >
< meta property = "og:url" content = "https://vscode-api-cn.js.org/index.html" >
< meta property = "og:site_name" content = "Vscode Api 中文文档" >
< meta property = "og:description" content = "VS Code API 是一系列你可以在 Visual Studio Code 扩展中调用的 JavaScript API, 这个站点列出了扩展开发者可以使用的所有 vscode api 中文文档,是 vscode 插件开发必备。" >
< meta property = "article:tag" content = "vscode api" >
< meta property = "article:tag" content = "vscode api 中文文档" >
< meta property = "article:tag" content = "vscode 插件" >
< meta property = "article:tag" content = "vscode 插件开发" >
< meta property = "article:tag" content = "vscode VS Code API 中文文档" >
< meta property = "article:tag" content = "vscode QuickPick" >
< meta name = "viewport" content = "width=device-width, initial-scale=1, viewport-fit=cover" >
< link rel = "shortcut icon" href = "https://code.visualstudio.com/favicon.ico" sizes = "128x128" >
< link rel = 'canonical' href = 'https://vscode-api-cn.js.org/interfaces/vscode.QuickPick.html' / >
< link rel = "stylesheet" href = "../assets/css/main.css" >
< script async src = "../assets/js/search.js" id = "search-script" > < / script >
< meta name = "baidu-site-verification" content = "codeva-3X25ouCcqY" / >
< script async src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7962287588031867" crossorigin = "anonymous" > < / script >
<!-- Google tag (gtag.js) -->
< script async src = "https://www.googletagmanager.com/gtag/js?id=G-T4TRRS1LB1" > < / script >
< script >
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-T4TRRS1LB1');
< / script >
< style >
.container-main {
padding-bottom: 50px;
}
< / style >
< / head >
< body >
< header >
< div class = "tsd-page-toolbar" >
< div class = "container" >
< div class = "table-wrap" >
< div class = "table-cell" id = "tsd-search" data-index = "../assets/js/search.json" data-base = ".." >
< div class = "field" >
< label for = "tsd-search-field" class = "tsd-widget search no-caption" > Search< / label >
< input id = "tsd-search-field" type = "text" / >
< / div >
< ul class = "results" >
< li class = "state loading" > Preparing search index...< / li >
< li class = "state failure" > The search index is not available< / li >
< / ul >
< a href = "../index.html" class = "title" > VS Code API 中文文档< / a >
< / div >
< div class = "table-cell" id = "tsd-widgets" >
< div id = "tsd-filter" >
< a href = "#" class = "tsd-widget options no-caption" data-toggle = "options" > Options< / a >
< div class = "tsd-filter-group" >
< div class = "tsd-select" id = "tsd-filter-visibility" >
< span class = "tsd-select-label" > All< / span >
< ul class = "tsd-select-list" >
< li data-value = "public" > Public< / li >
< li data-value = "protected" > Public/Protected< / li >
< li data-value = "private" class = "selected" > All< / li >
< / ul >
< / div >
< input type = "checkbox" id = "tsd-filter-inherited" checked / >
< label class = "tsd-widget" for = "tsd-filter-inherited" > Inherited< / label >
< input type = "checkbox" id = "tsd-filter-externals" checked / >
< label class = "tsd-widget" for = "tsd-filter-externals" > Externals< / label >
< / div >
< / div >
< a href = "#" class = "tsd-widget menu no-caption" data-toggle = "menu" > Menu< / a >
< / div >
< / div >
< / div >
< / div >
< div class = "tsd-page-title" >
< div class = "container" >
< ul class = "tsd-breadcrumb" >
< li >
< a href = "../modules.html" > VS Code API 中文文档< / a >
< / li >
< li >
< a href = "../modules/vscode.html" > vscode< / a >
< / li >
< li >
< a href = "vscode.QuickPick.html" > QuickPick< / a >
< / li >
< / ul >
< h1 > Interface QuickPick< T> < / h1 >
< / div >
< / div >
< / header >
< div class = "container container-main" >
< div class = "row" >
< div class = "col-8 col-content" >
< ins class = "adsbygoogle" style = "display:block" data-ad-client = "ca-pub-5641491107630454" data-ad-slot = "1206633556" data-page-url = "https://nablepart.com" data-override-format = "true" data-ad-format = "auto" data-full-width-responsive = "true" > < / ins >
< section class = "tsd-panel tsd-comment" >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > A concrete < a href = "vscode.QuickInput.html" > QuickInput< / a > to let the user pick an item from a
list of items of type T. The items can be filtered through a filter text field and
there is an option < a href = "vscode.QuickPick.html#canSelectMany" > canSelectMany< / a > to allow for
selecting multiple items.< / p >
< / div >
< p > Note that in many cases the more convenient < a href = "../modules/vscode.window.html#showQuickPick" > window.showQuickPick< / a >
is easier to use. < a href = "../modules/vscode.window.html#createQuickPick" > window.createQuickPick< / a > should be used
when < a href = "../modules/vscode.window.html#showQuickPick" > window.showQuickPick< / a > does not offer the required flexibility.< / p >
< / div >
< / section >
< section class = "tsd-panel tsd-type-parameters" >
< h3 > Type parameters< / h3 >
< ul class = "tsd-type-parameters" >
< li >
< h4 > T< span class = "tsd-signature-symbol" > : < / span > < a href = "vscode.QuickPickItem.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > QuickPickItem< / a > < / h4 >
< / li >
< / ul >
< / section >
< section class = "tsd-panel tsd-hierarchy" >
< h3 > 层级< / h3 >
< ul class = "tsd-hierarchy" >
< li >
< a href = "vscode.QuickInput.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > QuickInput< / a >
< ul class = "tsd-hierarchy" >
< li >
< span class = "target" > QuickPick< / span >
< / li >
< / ul >
< / li >
< / ul >
< / section >
< section class = "tsd-panel-group tsd-index-group" >
< h2 > 索引< / h2 >
< section class = "tsd-panel tsd-index-panel" >
< div class = "tsd-index-content" >
< section class = "tsd-index-section " >
< h3 > Properties( 21) < / h3 >
< ul class = "tsd-index-list" >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#title" class = "tsd-kind-icon" > title< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#step" class = "tsd-kind-icon" > step< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#totalSteps" class = "tsd-kind-icon" > total< wbr > Steps< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#enabled" class = "tsd-kind-icon" > enabled< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#busy" class = "tsd-kind-icon" > busy< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#ignoreFocusOut" class = "tsd-kind-icon" > ignore< wbr > Focus< wbr > Out< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#onDidHide" class = "tsd-kind-icon" > on< wbr > Did< wbr > Hide< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#value" class = "tsd-kind-icon" > value< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#placeholder" class = "tsd-kind-icon" > placeholder< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#onDidChangeValue" class = "tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Value< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#onDidAccept" class = "tsd-kind-icon" > on< wbr > Did< wbr > Accept< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#buttons" class = "tsd-kind-icon" > buttons< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#onDidTriggerButton" class = "tsd-kind-icon" > on< wbr > Did< wbr > Trigger< wbr > Button< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#items" class = "tsd-kind-icon" > items< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#canSelectMany" class = "tsd-kind-icon" > can< wbr > Select< wbr > Many< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#matchOnDescription" class = "tsd-kind-icon" > match< wbr > OnDescription< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#matchOnDetail" class = "tsd-kind-icon" > match< wbr > OnDetail< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#activeItems" class = "tsd-kind-icon" > active< wbr > Items< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#onDidChangeActive" class = "tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Active< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#selectedItems" class = "tsd-kind-icon" > selected< wbr > Items< / a > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < a href = "vscode.QuickPick.html#onDidChangeSelection" class = "tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Selection< / a > < / li >
< / ul >
< / section >
< section class = "tsd-index-section tsd-is-inherited" >
< h3 > Methods( 3) < / h3 >
< ul class = "tsd-index-list" >
< li class = "tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#show" class = "tsd-kind-icon" > show< / a > < / li >
< li class = "tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#hide" class = "tsd-kind-icon" > hide< / a > < / li >
< li class = "tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" > < a href = "vscode.QuickPick.html#dispose" class = "tsd-kind-icon" > dispose< / a > < / li >
< / ul >
< / section >
< / div >
< / section >
< / section >
< section class = "tsd-panel-group tsd-member-group " >
< h2 > Properties( 21) < / h2 >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "title" class = "tsd-anchor" > < / a >
< h3 > title< / h3 >
< div class = "tsd-signature tsd-kind-icon" > title< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > undefined< / span > < span class = "tsd-signature-symbol" > | < / span > < span class = "tsd-signature-type" > string< / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#title" > title< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L9968" > vscode.d.ts:9968< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An optional title.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "step" class = "tsd-anchor" > < / a >
< h3 > step< / h3 >
< div class = "tsd-signature tsd-kind-icon" > step< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > undefined< / span > < span class = "tsd-signature-symbol" > | < / span > < span class = "tsd-signature-type" > number< / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#step" > step< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L9973" > vscode.d.ts:9973< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An optional current step count.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "totalSteps" class = "tsd-anchor" > < / a >
< h3 > total< wbr > Steps< / h3 >
< div class = "tsd-signature tsd-kind-icon" > total< wbr > Steps< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > undefined< / span > < span class = "tsd-signature-symbol" > | < / span > < span class = "tsd-signature-type" > number< / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#totalSteps" > totalSteps< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L9978" > vscode.d.ts:9978< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An optional total step count.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "enabled" class = "tsd-anchor" > < / a >
< h3 > enabled< / h3 >
< div class = "tsd-signature tsd-kind-icon" > enabled< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#enabled" > enabled< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L9986" > vscode.d.ts:9986< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > If the UI should allow for user input. Defaults to true.< / p >
< / div >
< p > Change this to false, e.g., while validating user input or
loading data for the next step in user input.< / p >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "busy" class = "tsd-anchor" > < / a >
< h3 > busy< / h3 >
< div class = "tsd-signature tsd-kind-icon" > busy< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#busy" > busy< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L9994" > vscode.d.ts:9994< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > If the UI should show a progress indicator. Defaults to false.< / p >
< / div >
< p > Change this to true, e.g., while loading more data or validating
user input.< / p >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "ignoreFocusOut" class = "tsd-anchor" > < / a >
< h3 > ignore< wbr > Focus< wbr > Out< / h3 >
< div class = "tsd-signature tsd-kind-icon" > ignore< wbr > Focus< wbr > Out< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#ignoreFocusOut" > ignoreFocusOut< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10000" > vscode.d.ts:10000< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > If the UI should stay open even when loosing UI focus. Defaults to false.
This setting is ignored on iPad and is always false.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a name = "onDidHide" class = "tsd-anchor" > < / a >
< h3 > on< wbr > Did< wbr > Hide< / h3 >
< div class = "tsd-signature tsd-kind-icon" > on< wbr > Did< wbr > Hide< span class = "tsd-signature-symbol" > :< / span > < a href = "vscode.Event.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > Event< / a > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > void< / span > < span class = "tsd-signature-symbol" > > < / span > < / div >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#onDidHide" > onDidHide< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10022" > vscode.d.ts:10022< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An event signaling when this input UI is hidden.< / p >
< / div >
< p > There are several reasons why this UI might have to be hidden and
the extension will be notified through < a href = "vscode.QuickInput.html#onDidHide" > QuickInput.onDidHide< / a > .
(Examples include: an explicit call to < a href = "vscode.QuickInput.html#hide" > QuickInput.hide< / a > ,
the user pressing Esc, some other input UI opening, etc.)< / p >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "value" class = "tsd-anchor" > < / a >
< h3 > value< / h3 >
< div class = "tsd-signature tsd-kind-icon" > value< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > string< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10048" > vscode.d.ts:10048< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Current value of the filter text.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "placeholder" class = "tsd-anchor" > < / a >
< h3 > placeholder< / h3 >
< div class = "tsd-signature tsd-kind-icon" > placeholder< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > undefined< / span > < span class = "tsd-signature-symbol" > | < / span > < span class = "tsd-signature-type" > string< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10053" > vscode.d.ts:10053< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Optional placeholder in the filter text.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "onDidChangeValue" class = "tsd-anchor" > < / a >
< h3 > < span class = "tsd-flag ts-flagReadonly" > Readonly< / span > on< wbr > Did< wbr > Change< wbr > Value< / h3 >
< div class = "tsd-signature tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Value< span class = "tsd-signature-symbol" > :< / span > < a href = "vscode.Event.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > Event< / a > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > > < / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10058" > vscode.d.ts:10058< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An event signaling when the value of the filter text has changed.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "onDidAccept" class = "tsd-anchor" > < / a >
< h3 > < span class = "tsd-flag ts-flagReadonly" > Readonly< / span > on< wbr > Did< wbr > Accept< / h3 >
< div class = "tsd-signature tsd-kind-icon" > on< wbr > Did< wbr > Accept< span class = "tsd-signature-symbol" > :< / span > < a href = "vscode.Event.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > Event< / a > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > void< / span > < span class = "tsd-signature-symbol" > > < / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10063" > vscode.d.ts:10063< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An event signaling when the user indicated acceptance of the selected item(s).< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "buttons" class = "tsd-anchor" > < / a >
< h3 > buttons< / h3 >
< div class = "tsd-signature tsd-kind-icon" > buttons< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-symbol" > readonly < / span > < a href = "vscode.QuickInputButton.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > QuickInputButton< / a > < span class = "tsd-signature-symbol" > []< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10068" > vscode.d.ts:10068< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Buttons for actions in the UI.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "onDidTriggerButton" class = "tsd-anchor" > < / a >
< h3 > < span class = "tsd-flag ts-flagReadonly" > Readonly< / span > on< wbr > Did< wbr > Trigger< wbr > Button< / h3 >
< div class = "tsd-signature tsd-kind-icon" > on< wbr > Did< wbr > Trigger< wbr > Button< span class = "tsd-signature-symbol" > :< / span > < a href = "vscode.Event.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > Event< / a > < span class = "tsd-signature-symbol" > < < / span > < a href = "vscode.QuickInputButton.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > QuickInputButton< / a > < span class = "tsd-signature-symbol" > > < / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10073" > vscode.d.ts:10073< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An event signaling when a button was triggered.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "items" class = "tsd-anchor" > < / a >
< h3 > items< / h3 >
< div class = "tsd-signature tsd-kind-icon" > items< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-symbol" > readonly < / span > < span class = "tsd-signature-type" > T< / span > < span class = "tsd-signature-symbol" > []< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10078" > vscode.d.ts:10078< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Items to pick from. This can be read and updated by the extension.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "canSelectMany" class = "tsd-anchor" > < / a >
< h3 > can< wbr > Select< wbr > Many< / h3 >
< div class = "tsd-signature tsd-kind-icon" > can< wbr > Select< wbr > Many< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10083" > vscode.d.ts:10083< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > If multiple items can be selected at the same time. Defaults to false.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "matchOnDescription" class = "tsd-anchor" > < / a >
< h3 > match< wbr > OnDescription< / h3 >
< div class = "tsd-signature tsd-kind-icon" > match< wbr > OnDescription< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10088" > vscode.d.ts:10088< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > If the filter text should also be matched against the description of the items. Defaults to false.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "matchOnDetail" class = "tsd-anchor" > < / a >
< h3 > match< wbr > OnDetail< / h3 >
< div class = "tsd-signature tsd-kind-icon" > match< wbr > OnDetail< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10093" > vscode.d.ts:10093< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > If the filter text should also be matched against the detail of the items. Defaults to false.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "activeItems" class = "tsd-anchor" > < / a >
< h3 > active< wbr > Items< / h3 >
< div class = "tsd-signature tsd-kind-icon" > active< wbr > Items< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-symbol" > readonly < / span > < span class = "tsd-signature-type" > T< / span > < span class = "tsd-signature-symbol" > []< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10098" > vscode.d.ts:10098< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Active items. This can be read and updated by the extension.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "onDidChangeActive" class = "tsd-anchor" > < / a >
< h3 > < span class = "tsd-flag ts-flagReadonly" > Readonly< / span > on< wbr > Did< wbr > Change< wbr > Active< / h3 >
< div class = "tsd-signature tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Active< span class = "tsd-signature-symbol" > :< / span > < a href = "vscode.Event.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > Event< / a > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-symbol" > readonly < / span > < span class = "tsd-signature-type" > T< / span > < span class = "tsd-signature-symbol" > []< / span > < span class = "tsd-signature-symbol" > > < / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10103" > vscode.d.ts:10103< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An event signaling when the active items have changed.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "selectedItems" class = "tsd-anchor" > < / a >
< h3 > selected< wbr > Items< / h3 >
< div class = "tsd-signature tsd-kind-icon" > selected< wbr > Items< span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-symbol" > readonly < / span > < span class = "tsd-signature-type" > T< / span > < span class = "tsd-signature-symbol" > []< / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10108" > vscode.d.ts:10108< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Selected items. This can be read and updated by the extension.< / p >
< / div >
< / div >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface" >
< a name = "onDidChangeSelection" class = "tsd-anchor" > < / a >
< h3 > < span class = "tsd-flag ts-flagReadonly" > Readonly< / span > on< wbr > Did< wbr > Change< wbr > Selection< / h3 >
< div class = "tsd-signature tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Selection< span class = "tsd-signature-symbol" > :< / span > < a href = "vscode.Event.html" class = "tsd-signature-type" data-tsd-kind = "Interface" > Event< / a > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-symbol" > readonly < / span > < span class = "tsd-signature-type" > T< / span > < span class = "tsd-signature-symbol" > []< / span > < span class = "tsd-signature-symbol" > > < / span > < / div >
< aside class = "tsd-sources" >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10113" > vscode.d.ts:10113< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > An event signaling when the selected items have changed.< / p >
< / div >
< / div >
< / section >
< / section >
< section class = "tsd-panel-group tsd-member-group tsd-is-inherited" >
< h2 > Methods( 3) < / h2 >
< section class = "tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< a name = "show" class = "tsd-anchor" > < / a >
< h3 > show< / h3 >
< ul class = "tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< li class = "tsd-signature tsd-kind-icon" > show< span class = "tsd-signature-symbol" > (< / span > < span class = "tsd-signature-symbol" > )< / span > < span class = "tsd-signature-symbol" > : < / span > < span class = "tsd-signature-type" > void< / span > < / li >
< / ul >
< ul class = "tsd-descriptions" >
< li class = "tsd-description" >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#show" > show< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10006" > vscode.d.ts:10006< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Makes the input UI visible in its current configuration. Any other input
UI will first fire an < a href = "vscode.QuickInput.html#onDidHide" > QuickInput.onDidHide< / a > event.< / p >
< / div >
< / div >
< h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > void< / span > < / h4 >
< / li >
< / ul >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< a name = "hide" class = "tsd-anchor" > < / a >
< h3 > hide< / h3 >
< ul class = "tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< li class = "tsd-signature tsd-kind-icon" > hide< span class = "tsd-signature-symbol" > (< / span > < span class = "tsd-signature-symbol" > )< / span > < span class = "tsd-signature-symbol" > : < / span > < span class = "tsd-signature-type" > void< / span > < / li >
< / ul >
< ul class = "tsd-descriptions" >
< li class = "tsd-description" >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#hide" > hide< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10012" > vscode.d.ts:10012< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Hides this input UI. This will also fire an < a href = "vscode.QuickInput.html#onDidHide" > QuickInput.onDidHide< / a >
event.< / p >
< / div >
< / div >
< h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > void< / span > < / h4 >
< / li >
< / ul >
< / section >
< section class = "tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< a name = "dispose" class = "tsd-anchor" > < / a >
< h3 > dispose< / h3 >
< ul class = "tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< li class = "tsd-signature tsd-kind-icon" > dispose< span class = "tsd-signature-symbol" > (< / span > < span class = "tsd-signature-symbol" > )< / span > < span class = "tsd-signature-symbol" > : < / span > < span class = "tsd-signature-type" > void< / span > < / li >
< / ul >
< ul class = "tsd-descriptions" >
< li class = "tsd-description" >
< aside class = "tsd-sources" >
< p > Inherited from < a href = "vscode.QuickInput.html" > QuickInput< / a > .< a href = "vscode.QuickInput.html#dispose" > dispose< / a > < / p >
< ul >
< li > Defined in < a href = "https://github.com/youngjuning/vscode-api-cn.js.org/blob/3e14418/vscode.d.ts#L10030" > vscode.d.ts:10030< / a > < / li >
< / ul >
< / aside >
< div class = "tsd-comment tsd-typography" >
< div class = "lead" >
< p > Dispose of this input UI and any associated resources. If it is still
visible, it is first hidden. After this call the input UI is no longer
functional and no additional methods or properties on it should be
accessed. Instead a new input UI should be created.< / p >
< / div >
< / div >
< h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > void< / span > < / h4 >
< / li >
< / ul >
< / section >
< / section >
< ins class = "adsbygoogle" style = "display:block" data-ad-client = "ca-pub-5641491107630454" data-ad-slot = "5596588097" data-page-url = "https://nablepart.com" data-override-format = "true" data-ad-format = "auto" data-full-width-responsive = "true" > < / ins >
< / div >
< div class = "col-4 col-menu menu-sticky-wrap menu-highlight" >
< nav class = "tsd-navigation primary" >
< ul >
< li class = " " >
< a href = "../modules.html" > Exports< / a >
< / li >
< li class = "current tsd-kind-namespace" >
< a href = "../modules/vscode.html" > vscode< / a >
< ul >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.authentication.html" > authentication< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.commands.html" > commands< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.comments.html" > comments< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.debug.html" > debug< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.env.html" > env< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.extensions.html" > extensions< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.languages.html" > languages< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.notebooks.html" > notebooks< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.scm.html" > scm< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.tasks.html" > tasks< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.tests.html" > tests< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.window.html" > window< / a >
< / li >
< li class = " tsd-kind-namespace tsd-parent-kind-namespace" >
< a href = "../modules/vscode.workspace.html" > workspace< / a >
< / li >
< / ul >
< / li >
< / ul >
< / nav >
< nav class = "tsd-navigation secondary menu-sticky" >
< div style = "width: 200px" >
< script async = "async" type = "text/javascript" id = "clstr_globe" src = "//clustrmaps.com/globe.js?d=cMnk-gSDNcAzNMMm67U8rWRaHnjUc0Xb0giSGndepK4" > < / script >
< / div >
< ul class = "before-current" >
< / ul >
< ul class = "current" >
< li class = "current tsd-kind-interface tsd-parent-kind-namespace tsd-has-type-parameter" >
< a href = "vscode.QuickPick.html" class = "tsd-kind-icon" > Quick< wbr > Pick< / a >
< ul >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#title" class = "tsd-kind-icon" > title< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#step" class = "tsd-kind-icon" > step< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#totalSteps" class = "tsd-kind-icon" > total< wbr > Steps< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#enabled" class = "tsd-kind-icon" > enabled< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#busy" class = "tsd-kind-icon" > busy< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#ignoreFocusOut" class = "tsd-kind-icon" > ignore< wbr > Focus< wbr > Out< / a >
< / li >
< li class = " tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#show" class = "tsd-kind-icon" > show< / a >
< / li >
< li class = " tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#hide" class = "tsd-kind-icon" > hide< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#onDidHide" class = "tsd-kind-icon" > on< wbr > Did< wbr > Hide< / a >
< / li >
< li class = " tsd-kind-method tsd-parent-kind-interface tsd-is-inherited" >
< a href = "vscode.QuickPick.html#dispose" class = "tsd-kind-icon" > dispose< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#value" class = "tsd-kind-icon" > value< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#placeholder" class = "tsd-kind-icon" > placeholder< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#onDidChangeValue" class = "tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Value< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#onDidAccept" class = "tsd-kind-icon" > on< wbr > Did< wbr > Accept< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#buttons" class = "tsd-kind-icon" > buttons< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#onDidTriggerButton" class = "tsd-kind-icon" > on< wbr > Did< wbr > Trigger< wbr > Button< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#items" class = "tsd-kind-icon" > items< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#canSelectMany" class = "tsd-kind-icon" > can< wbr > Select< wbr > Many< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#matchOnDescription" class = "tsd-kind-icon" > match< wbr > OnDescription< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#matchOnDetail" class = "tsd-kind-icon" > match< wbr > OnDetail< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#activeItems" class = "tsd-kind-icon" > active< wbr > Items< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#onDidChangeActive" class = "tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Active< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#selectedItems" class = "tsd-kind-icon" > selected< wbr > Items< / a >
< / li >
< li class = " tsd-kind-property tsd-parent-kind-interface" >
< a href = "vscode.QuickPick.html#onDidChangeSelection" class = "tsd-kind-icon" > on< wbr > Did< wbr > Change< wbr > Selection< / a >
< / li >
< / ul >
< / li >
< / ul >
< ul class = "after-current" >
< ins class = "adsbygoogle" style = "display:block" data-ad-client = "ca-pub-5641491107630454" data-ad-slot = "5702084207" data-page-url = "https://nablepart.com" data-override-format = "true" data-ad-format = "auto" data-full-width-responsive = "true" > < / ins >
< / ul >
< / nav >
< / div >
< / div >
< / div >
< footer class = "with-border-bottom" >
< div class = "container" >
< h2 > 图例< / h2 >
< div class = "tsd-legend-group" >
< ul class = "tsd-legend" >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < span class = "tsd-kind-icon" > Property< / span > < / li >
< / ul >
< / div >
< / div >
< / footer >
< div class = "container tsd-generator" >
< p > 友链:< a href = "https://jeasonstudio.gitbooks.io/vscode-cn-doc/content/" target = "_blank" > VS Code 中文文档< / a > | < a href = "https://code.visualstudio.com/docs" target = "_blank" > VS Code 官网文档< / a > | < a href = "https://marketplace.visualstudio.com/" target = "_blank" > VS Code 扩展市场< / a > < / p >
< p > Generated by < a href = "https://typedoc.org/" target = "_blank" > TypeDoc< / a > . Maintained by < a href = "https://youngjuning.js.org" target = "_blank" > 洛竹< / a > < / p >
< / div >
< div class = "overlay" > < / div >
< script src = "../assets/js/main.js" > < / script >
< script > ( adsbygoogle = window . adsbygoogle || [ ] ) . push ( { 'enable_page_level_ads' : true } ) ; < / script >
< / body >
< / html >