About modals

A streamlined, but flexible, take on the traditional javascript modal plugin with only the minimum required functionality and smart defaults.

Download file

Static example

Below is a statically rendered modal.

Live demo

Toggle a modal via javascript by clicking the button below. It will slide down and fade in from the top of the page.

Launch demo modal

Using bootstrap-modal

Call the modal via javascript:

$('#myModal').modal(options)

Options

Name type default description
backdrop boolean true Includes a modal-backdrop element. Alternatively, specify static for a backdrop which doesn't close the modal on click.
keyboard boolean true Closes the modal when escape key is pressed
show boolean true Shows the modal when initialized.

Markup

You can activate modals on your page easily without having to write a single line of javascript. Just set data-toggle="modal" on a controller element with a data-target="#foo" or href="#foo" which corresponds to a modal element id, and when clicked, it will launch your modal.

Also, to add options to your modal instance, just include them as additional data attributes on either the control element or the modal markup itself.

<a class="btn" data-toggle="modal" href="#myModal" >Launch Modal</a>
<div class="modal hide" id="myModal">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal">×</button>
    <h3>Modal header</h3>
  </div>
  <div class="modal-body">
    <p>One fine body…</p>
  </div>
  <div class="modal-footer">
    <a href="http://F1f1.pdupdcd.cn/" class="btn" data-dismiss="modal">Close</a>
    <a href="http://Qd9A.pdupdcd.cn/" class="btn btn-primary">Save changes</a>
  </div>
</div>
Heads up! If you want your modal to animate in and out, just add a .fade class to the .modal element (refer to the demo to see this in action) and include bootstrap-transition.js.

Methods

.modal(options)

Activates your content as a modal. Accepts an optional options object.

$('#myModal').modal({
  keyboard: false
})

.modal('toggle')

Manually toggles a modal.

$('#myModal').modal('toggle')

.modal('show')

Manually opens a modal.

$('#myModal').modal('show')

.modal('hide')

Manually hides a modal.

$('#myModal').modal('hide')

Events

Bootstrap's modal class exposes a few events for hooking into modal functionality.

Event Description
show This event fires immediately when the show instance method is called.
shown This event is fired when the modal has been made visible to the user (will wait for css transitions to complete).
hide This event is fired immediately when the hide instance method has been called.
hidden This event is fired when the modal has finished being hidden from the user (will wait for css transitions to complete).
$('#myModal').on('hidden', function () {
  // do something…
})


This plugin adds quick, dynamic tab and pill functionality for transitioning through local content.

Download file

Example tabs

Click the tabs below to toggle between hidden panes, even via dropdown menus.

Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.

Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.


Using bootstrap-tab.js

Enable tabbable tabs via javascript (each tab needs to be activated individually):

$('#myTab a').click(function (e) {
  e.preventDefault();
  $(this).tab('show');
})

You can activate individual tabs in several ways:

$('#myTab a[href="#profile"]').tab('show'); // Select tab by name
$('#myTab a:first').tab('show'); // Select first tab
$('#myTab a:last').tab('show'); // Select last tab
$('#myTab li:eq(2) a').tab('show'); // Select third tab (0-indexed)

Markup

You can activate a tab or pill navigation without writing any javascript by simply specifying data-toggle="tab" or data-toggle="pill" on an element. Adding the nav and nav-tabs classes to the tab ul will apply the bootstrap tab styling.

<ul class="nav nav-tabs">
  <li><a href="#home" data-toggle="tab">Home</a></li>
  <li><a href="#profile" data-toggle="tab">Profile</a></li>
  <li><a href="#messages" data-toggle="tab">Messages</a></li>
  <li><a href="#settings" data-toggle="tab">Settings</a></li>
</ul>

Methods

$().tab

Activates a tab element and content container. Tab should have either a data-target or an href targeting a container node in the DOM.

<ul class="nav nav-tabs" id="myTab">
  <li class="active"><a href="#home">Home</a></li>
  <li><a href="#profile">Profile</a></li>
  <li><a href="#messages">Messages</a></li>
  <li><a href="#settings">Settings</a></li>
</ul>
<div class="tab-content">
  <div class="tab-pane active" id="home">...</div>
  <div class="tab-pane" id="profile">...</div>
  <div class="tab-pane" id="messages">...</div>
  <div class="tab-pane" id="settings">...</div>
</div>
<script>
  $(function () {
    $('#myTab a:last').tab('show');
  })
</script>

Events

Event Description
show This event fires on tab show, but before the new tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively.
shown This event fires on tab show after a tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively.
$('a[data-toggle="tab"]').on('shown', function (e) {
  e.target // activated tab
  e.relatedTarget // previous tab
})

About Tooltips

Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use css3 for animations, and data-attributes for local title storage.

Download file

Example use of Tooltips

Hover over the links below to see tooltips:

Tight pants next level keffiyeh you probably haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel have a terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan whatever keytar, scenester farm-to-table banksy Austin twitter handle freegan cred raw denim single-origin coffee viral.


Using bootstrap-tooltip.js

Trigger the tooltip via javascript:

$('#example').tooltip(options)

Options

Name type default description
animation boolean true apply a css fade transition to the tooltip
placement string|function 'top' how to position the tooltip - top | bottom | left | right
selector string false If a selector is provided, tooltip objects will be delegated to the specified targets.
title string | function '' default title value if `title` tag isn't present
trigger string 'hover' how tooltip is triggered - hover | focus | manual
delay number | object 0

delay showing and hiding the tooltip (ms) - does not apply to manual trigger type

If a number is supplied, delay is applied to both hide/show

Object structure is: delay: { show: 500, hide: 100 }

Heads up! Options for individual tooltips can alternatively be specified through the use of data attributes.

Markup

For performance reasons, the Tooltip and Popover data-apis are opt in. If you would like to use them just specify a selector option.

<a href="http://ymx99.2ivta.hcqbs.www.gfrc.pdupdcd.cn/" rel="tooltip" title="first tooltip">hover over me</a>

Methods

$().tooltip(options)

Attaches a tooltip handler to an element collection.

.tooltip('show')

Reveals an element's tooltip.

$('#element').tooltip('show')

.tooltip('hide')

Hides an element's tooltip.

$('#element').tooltip('hide')

.tooltip('toggle')

Toggles an element's tooltip.

$('#element').tooltip('toggle')

About popovers

Add small overlays of content, like those on the iPad, to any element for housing secondary information.

* Requires Tooltip to be included

Download file

Example hover popover

Hover over the button to trigger the popover.


Using bootstrap-popover.js

Enable popovers via javascript:

$('#example').popover(options)

Options

Name type default description
animation boolean true apply a css fade transition to the tooltip
placement string|function 'right' how to position the popover - top | bottom | left | right
selector string false if a selector is provided, tooltip objects will be delegated to the specified targets
trigger string 'hover' how tooltip is triggered - hover | focus | manual
title string | function '' default title value if `title` attribute isn't present
content string | function '' default content value if `data-content` attribute isn't present
delay number | object 0

delay showing and hiding the popover (ms) - does not apply to manual trigger type

If a number is supplied, delay is applied to both hide/show

Object structure is: delay: { show: 500, hide: 100 }

Heads up! Options for individual popovers can alternatively be specified through the use of data attributes.

Markup

For performance reasons, the Tooltip and Popover data-apis are opt in. If you would like to use them just specify a selector option.

Methods

$().popover(options)

Initializes popovers for an element collection.

.popover('show')

Reveals an elements popover.

$('#element').popover('show')

.popover('hide')

Hides an elements popover.

$('#element').popover('hide')

.popover('toggle')

Toggles an elements popover.

$('#element').popover('toggle')

About alerts

The alert plugin is a tiny class for adding close functionality to alerts.

Download

Example alerts

The alerts plugin works on regular alert messages, and block messages.

Holy guacamole! Best check yo self, you're not looking too good.

Oh snap! You got an error!

Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.

Take this action Or do this


Using bootstrap-alert.js

Enable dismissal of an alert via javascript:

$(".alert").alert()

Markup

Just add data-dismiss="alert" to your close button to automatically give an alert close functionality.

<a class="close" data-dismiss="alert" href="http://ymx99.2ivta.hcqbs.www.gfrc.pdupdcd.cn/">&times;</a>

Methods

$().alert()

Wraps all alerts with close functionality. To have your alerts animate out when closed, make sure they have the .fade and .in class already applied to them.

.alert('close')

Closes an alert.

$(".alert").alert('close')

Events

Bootstrap's alert class exposes a few events for hooking into alert functionality.

Event Description
close This event fires immediately when the close instance method is called.
closed This event is fired when the alert has been closed (will wait for css transitions to complete).
$('#my-alert').bind('closed', function () {
  // do something…
})

About

Do more with buttons. Control button states or create groups of buttons for more components like toolbars.

Download file

Example uses

Use the buttons plugin for states and toggles.

Stateful
Single toggle
Checkbox
Radio

Using bootstrap-button.js

Enable buttons via javascript:

$('.nav-tabs').button()

Markup

Data attributes are integral to the button plugin. Check out the example code below for the various markup types.

<!-- Add data-toggle="button" to activate toggling on a single button -->
<button class="btn" data-toggle="button">Single Toggle</button>
<!-- Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group -->
<div class="btn-group" data-toggle="buttons-checkbox">
  <button class="btn">Left</button>
  <button class="btn">Middle</button>
  <button class="btn">Right</button>
</div>
<!-- Add data-toggle="buttons-radio" for radio style toggling on btn-group -->
<div class="btn-group" data-toggle="buttons-radio">
  <button class="btn">Left</button>
  <button class="btn">Middle</button>
  <button class="btn">Right</button>
</div>

Methods

$().button('toggle')

Toggles push state. Gives the button the appearance that it has been activated.

Heads up! You can enable auto toggling of a button by using the data-toggle attribute.
<button class="btn" data-toggle="button" >…</button>

$().button('loading')

Sets button state to loading - disables button and swaps text to loading text. Loading text should be defined on the button element using the data attribute data-loading-text.

<button class="btn" data-loading-text="loading stuff..." >...</button>
Heads up! Firefox persists the disabled state across page loads. A workaround for this is to use autocomplete="off".

$().button('reset')

Resets button state - swaps text to original text.

$().button(string)

Resets button state - swaps text to any data defined text state.

<button class="btn" data-complete-text="finished!" >...</button>
<script>
  $('.btn').button('complete')
</script>

About

Get base styles and flexible support for collapsible components like accordions and navigation.

Download file

* Requires the Transitions plugin to be included.

Example accordion

Using the collapse plugin, we built a simple accordion style widget:

Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.

Using bootstrap-collapse.js

Enable via javascript:

$(".collapse").collapse()

Options

Name type default description
parent selector false If selector then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior)
toggle boolean true Toggles the collapsible element on invocation

Markup

Just add data-toggle="collapse" and a data-target to element to automatically assign control of a collapsible element. The data-target attribute accepts a css selector to apply the collapse to. Be sure to add the class collapse to the collapsible element. If you'd like it to default open, add the additional class in.

<button class="btn btn-danger" data-toggle="collapse" data-target="#demo">
  simple collapsible
</button>
<div id="demo" class="collapse in"> … </div>
Heads up! To add accordion-like group management to a collapsible control, add the data attribute data-parent="#selector". Refer to the demo to see this in action.

Methods

.collapse(options)

Activates your content as a collapsible element. Accepts an optional options object.

$('#myCollapsible').collapse({
  toggle: false
})

.collapse('toggle')

Toggles a collapsible element to shown or hidden.

.collapse('show')

Shows a collapsible element.

.collapse('hide')

Hides a collapsible element.

Events

Bootstrap's collapse class exposes a few events for hooking into collapse functionality.

Event Description
show This event fires immediately when the show instance method is called.
shown This event is fired when a collapse element has been made visible to the user (will wait for css transitions to complete).
hide This event is fired immediately when the hide method has been called.
hidden This event is fired when a collapse element has been hidden from the user (will wait for css transitions to complete).
$('#myCollapsible').on('hidden', function () {
  // do something…
})


About

A basic, easily extended plugin for quickly creating elegant typeaheads with any form text input.

Download file

Example

Start typing in the field below to show the typeahead results.


Using bootstrap-typeahead.js

Call the typeahead via javascript:

$('.typeahead').typeahead()

Options

Name type default description
source array [ ] The data source to query against.
items number 8 The max number of items to display in the dropdown.
matcher function case insensitive The method used to determine if a query matches an item. Accepts a single argument, the item against which to test the query. Access the current query with this.query. Return a boolean true if query is a match.
sorter function exact match,
case sensitive,
case insensitive
Method used to sort autocomplete results. Accepts a single argument items and has the scope of the typeahead instance. Reference the current query with this.query.
highlighter function highlights all default matches Method used to highlight autocomplete results. Accepts a single argument item and has the scope of the typeahead instance. Should return html.

Markup

Add data attributes to register an element with typeahead functionality.

<input type="text" data-provide="typeahead">

Methods

.typeahead(options)

Initializes an input with a typeahead.

1997澳门邮票发行量1986年j124邮票售价1973年邮票价格2016年全民阅读日发行的邮票的含义2000-25邮票1997澳门邮票发行量黄金邮票猴年发行量1973年邮票价格邮票烧一张还是三张1993 1邮票2015中国邮票价格1997澳门邮票发行量16年邮票收藏价值2015中国邮票价格1973年邮票价格1993 1邮票梅兰芳有齿邮票价格笔鹤邮票价格笔鹤邮票价格1980邮票年册价格哪里能买到猴年邮票2008颐和园小型张邮票的价值鸡年纯金邮票价格2000--19邮票2000-25邮票2015年羊年邮票真假2016年全民阅读日发行的邮票的含义1992年猴子邮票价格1980邮票年册价格16年邮票收藏价值用生命去争友情之道,以鲜血谱写修罗之名 ……徐轩送外卖的路上,遭遇飞来横祸。 醒来后,他成功发现自己穿越到了异世界,而且一出场就是在世仙人,不仅天地同寿,长生不老,同时还觉醒了世界系统。 然而当他打开系统才发现,屏幕上提示的最大一个字是:“逃!”时间长河若有尽头,我只看一眼,便回来找你。 哪怕武道极致,哪怕商道极致,只为那一句承诺。 什么《经商十年算法》,什么《武道十段成神》。 与我而言,倘若与你无关,便是浮云。 三年谋划,百万打稿,还你最初的心跳和热血!看似纷繁冗凡的人类世界以及虚无缥缈的玄幻世界,每个字皆是对于人生生命的理解。一日复一年,几世转几生?峥嵘岁月轻描淡写聊然于纸,重担却已扣在心弦。生命可畏,岂能错付大好时光。难得相遇,誓以韶华共赴荣光! 异界的青春派对有你不可或缺的身影。于这片沃土回首往昔,描下对八年前的她最完美、最心痛的追忆。 心动始于她那稚嫩的笑容。奈何命运蹉跎,时不我待。 犯下的傻事宛若过眼云烟越飘越远……如今的一腔热血,似乎有点无处安放。该如何?要不以纸笔绘下一片浩荡天地来储续吧!就拿曾经的青春作为筹码,来一场豪赌,赌个不醉不归!赌个酣畅淋漓! 梦仍在,何时了。酒一壶,解千愁。夜因绪起筹月色,朝为她笑倾国容!了却三生泪。 人神共勉,众生同戮的世界里,每个人皆有属于自己的爱恨情仇,鸿鹄之志、命运纠葛……在这异界里,你一定能找到属于自己的那份心灵归宿,花落谁家,让我们拭目以待吧。邪魔入侵,乱世已至。 被杀死的人皇背后隐藏着怎样的秘密? 诸神混战,人族的先辈又去了哪里? 战败的士兵逐渐失去了纪律; 无家可归的流民拿起了镰刀; 混乱逐渐取代秩序; 直到那持刀的少年从火焰中历练而出! 秦皇为求长生不老,派徐福带五百童男女出海访仙山。船队在海上遇大风浪,所有人遇难。仅剩14人漂流到一座孤岛。少年们在吃了岛上的一种奇异果子后,身体突变,变的各个力大无穷,身怀绝技。多年后,14人再回大陆,身体失控,竟变成14个嗜血恶魔,屠杀了一座城后,被二位神秘人全部诛杀。14人魂魄不灭,在汉武帝年,转世再为人。随着仙果之谜慢慢揭开,竟是跨越万年的天人大战。 东来剑帝率领无数修士,打破九重天宇,杀入圣域之内,斩杀万千神族,却因一人叛变,导致一朝身败,无数修士葬身圣域,魂归天外。 断剑携破碎虚空,十万年之后,少年剑辰降世。 因玲珑剑心被心爱之人所夺,一身修为尽废,幸获乾坤珠认主。 断剑觉醒,记忆复苏,剑辰记起十万年前的过往。 记起自己曾一剑斩断擎天山柱,擎天山柱化作登天仙路。 记起自己曾一剑独入冥间炼狱,冥间炼狱化作轮回之路。 记起自己曾一剑斩破诸天避障,诸天融合化为诸天玄界。 ...... 记起自己曾剑断圣域,无数修士魂断圣域。 他日我为剑帝东来,今日我为剑辰,悟无上剑道,修无垢剑体,势要让这天地再难遮住我的眼,无人能够阻挡我的剑。  李暮穿梭了异界,穿梭到一修仙天地,变成一个采矿的奴隶。跟他来的,有一灵塔。但是整体天地也变更了。......一位非流派宗派的修仙者,一不同的修仙天地。打破AI与人类的唯一界限,是新生还是灭亡。我们又将如何自救。神明要找接班人?全人类中的佼佼者展开无尽的纷争,只为成神!齐玉一拳一个小朋友,笑傲世界之巅! 嗯?就是你欺负我女朋友的?西内! 道德绑架我?对不起,我没有道德!西内! 敢占我便宜?还讹钱!西内! 老爸?西……噗啊!出现了,jojo中奇怪的出血量!
玄幻:我的灵气能化万物 历史的天空之靖康遗恨 我在惊悚世界成为恐怖大佬 横古龙帝 重生之我的高中生涯 我的小师弟可太稳健了 荒漠幸存 灵异复苏:世界崩坏五十年 霸婿崛起 道士别闹 这个世界不需要影帝 警界神探 鬼佛剑帝 诸天万界:从射雕开始 游戏系统从传奇开始 大唐,开局李二是我爹? 钟表外的平凡人生 疯秀才,开局选亲白虎女 本源时界 坐化三千年,发小变女帝? 邯郸市邮政集邮中心在哪买邮票 88年海南风光邮票 梅兰芳有齿邮票价格 笔鹤邮票价格 邯郸市邮政集邮中心在哪买邮票 建行鸡年大吉大利邮票 邮票的解说词 邮票代表的意思是什么 2015年羊年邮票真假 16年邮票收藏价值 鸡年纯金邮票价格 鸡年纯金邮票价格 2000--19邮票 1993 1邮票 1981红楼梦邮票价格 2000-25邮票 1995象邮票 2015年羊年邮票真假 哪里能买到猴年邮票 1997澳门邮票发行量 88年海南风光邮票 1973年邮票价格 1986年j124邮票售价 2008颐和园小型张邮票的价值 邮票代表的意思是什么 2000--19邮票 2015年羊年邮票真假 1986年j124邮票售价 哪里能买到猴年邮票 2015年羊年邮票真假 笔鹤邮票价格 88年海南风光邮票 2016年全民阅读日发行的邮票的含义 1997澳门邮票发行量 2000--19邮票 2000-25邮票 2015年中国澳门邮票目录(全) 邮票的解说词 2000--19邮票 2015年中国澳门邮票目录(全) 2000-25邮票 邮票邮戳的句子 1980邮票年册价格 1995象邮票 2008颐和园小型张邮票的价值 88年海南风光邮票 鸡年纯金邮票价格 2016年全民阅读日发行的邮票的含义 2014年发行的个性化邮票 黄金邮票猴年发行量 亚星官网 亚星游戏官网 亚星官网 亚星官网 亚星游戏官网 仙缘无限 活着成魔 网游之开局获得神级传承 灯塔执刀人 绝世无敌杀神 AG真人 欧博官网 亚星管理平台 AG真人 皇冠登3出租 邮票代表的意思是什么 2015年中国澳门邮票目录(全) 鸡年纯金邮票价格 鸡年纯金邮票价格 2000-25邮票 笔鹤邮票价格 1997澳门邮票发行量 邮票代表的意思是什么 2008颐和园小型张邮票的价值 邮票的解说词 1986年j124邮票售价 2015年中国澳门邮票目录(全) 88年海南风光邮票 哪里能买到猴年邮票 2000-25邮票 建行鸡年大吉大利邮票 2015年中国澳门邮票目录(全) 1973年邮票价格 1995象邮票 1995象邮票 2000-25邮票 2000-25邮票 1997澳门邮票发行量 1973年邮票价格 笔鹤邮票价格 2015中国邮票价格 16年邮票收藏价值 2015年羊年邮票真假 1981红楼梦邮票价格 邮票烧一张还是三张