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="https://YA.se5g.cn/" class="btn" data-dismiss="modal">Close</a>
    <a href="https://vt.se5g.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="https://hx22.se5g.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="https://hx22.se5g.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.

做网站推广邢台网站背景怎么换网站建设吗云南网站优化网站主播2015中国网络安全技能大赛关于加强党政部门云计算服务网络安全管理的意见信息安全等级保护测评指南信息安全管理的重要性不包括网络信息安全技能大赛一所普通的大学,一名普通的年轻教师,担任一个普通的社团指导老师,然而在这样普普通通的背景下却蕴含着许许多多不普通的事人人都有一死,这是终极宿命吗?死亡成为每个人命运的枷锁,能破解吗? 一个风流浪子回转奔向永生之路的故事!他曾为了修行背叛师门,却还是陨落在心魔之下。复生在海贼世界的他,决定放下执念,潇洒的活一次。打架其实并不是一件多华丽的事情,有的人三两下被打趴下就再也爬不起来了,根本不存在那种斗来斗去如同功夫切磋一般的场面。在岩浆中泡澡,在上古杀阵中睡觉; 开着重型装甲车纵横异界; 乘着高达战警和哥斯拉斩仙弑佛…… 搞了个属性值系统,从此加点只加防御! 没办法,怕痛啊!异界的大罗金仙都好凶的,个个都会大威天龙,每天都开小会研究怎么破我的防。 咱也不知道他们为啥这么执着……受命于天,既寿永昌! 没有男人能挡住这八个字的诱惑,萧宁也不能。 作为一个不被看好的王爷,他就藩后第一个对手竟是诸葛孔明。 诸葛孔明轻摇羽扇笑道:“吾只需草船百艘,弹指间,可使贼军送来十万箭。” 萧宁冷笑一声,给他送了十万支箭,不过是火箭。 他的王妃八月身孕,上阵擂鼓,城上十四万人齐卸甲,竟无一人是男儿。 萧宁欲血杀回,看着满身是血的王妃他大笑:“好好好,真吾妻也!” 他与张居正谈国论,与岳飞马上豪歌,与奸相斗智斗勇,与普天共生一世。 他的千艘战船七下西洋,七掠西洋,带回了玉米红薯土豆等农作物。 登基之后,看着可恶的圣母,奸臣,媚外者祸害国家,萧宁回眸一笑百官惊。 他甩袖一挥:“肥料,都是肥料。”你说这个世界上,到底有没有神明? 当今世界,天道崩殂,山河如墨,倾世飘摇。如此乱世,有一少年懵懂地踏上了他命中注定的征程——— 半卷意气半卷狂,漫卷诗书写尽伤。 醉揽星辰秋水凉,几时意气几时狂? 十载寒窗,何苦天下把名扬? 只求这一回年少不枉。简介是什么鬼东西,叶小墨停下了打字的手,躺在床上翻来覆去地想这个问题,最后打开了搜索引擎,只见上面满篇都写着两个字:咸鱼!一个宅男穿越到日本战国时代,逢凶化险,不断适应成长的历险故事。简介
网络安全. 开展网络安全监督检查 网络安全法对央行履职 2016年网络安全现状分析 网络安全问题的文章 网络安全技术入门 网站建设优化 2015中国网络安全技能大赛 科技类网站 台州网站优化 性压抑的前世影响咨询【www.richdady.cn】 缺心眼的沟通技巧【www.richdady.cn】 脑部不清晰的自我提升咨询【www.richdady.cn】 升迁障碍的职场转型技巧有哪些?咨询【www.richdady.cn】 有官司的心理调适【www.richdady.cn】 什么原因意外的前世影响【www.richdady.cn】√转ihbwel 亲子关系的改善方法【www.richdady.cn】√转ihbwel 财运不佳的风水布局咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 忧郁症的案例分享咨询【微:qq383550880 】√转ihbwel 生活中的无形干扰有哪些咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 强迫症咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 感情纠纷的心理调适【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 暗恋的前世因果咨询【微:qq383550880 】√转ihbwel 冤亲债主的定义【www.richdady.cn】√转ihbwel 头脑混沌的自我提升【www.richdady.cn】√转ihbwel 头脑混沌的生活习惯【σσЗ8З55О88О√转ihbwel 前世缘份的咨询技巧咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的修行建议威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 升迁障碍的风水布局威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 财运不佳的原因分析咨询【微:qq383550880 】√转ihbwel 2015网络安全趋势 杭州网站制作外包 信息安全工程师注册 网站制作中心 深圳网站建设设计 天津网站建设 2016年网络安全现状分析 网络信息安全中宣部 江西医疗网站建设 网络信息安全研究所 江苏 传统营销模式的优点 信息安全服务资质安全工程 石家庄网络安全公司 太原网站优化 台州网站优化 灵动网站建设 大华 网络安全 中国亚马逊营销的特点 2016网络安全大赛 信息安全工程师注册 金融网站开发方案 网络安全服务产品 网络信息安全攻防赛 网络安全问题的文章 石家庄网络安全公司 网络安全业务资质 微信移动网站建设 企业网络安全规划方案 2017年信息安全竞赛 信息安全保障措施应与信息系统建设( )确保信息系统安全运行 学习网络安全 2016网络安全大赛 招聘 信息安全,-1 信息安全服务资质安全工程 B2B网络营销难点 网络安全信息测评报告 网站主播 国外的网络营销论坛 传统营销模式的优点 江西医疗网站建设 外贸公司网站 广告网络营销推广师 群发营销 搜索引擎营销理论基础 昆明网站建设制作 搜索引擎营销怎么做 宣城网站建设 网络安全法对央行履职 聊城网站制作价格 情感营销策略案例 企业网站制作设计 内容付费如何营销 网络安全 四层 南宁网站建设找哪家 南宁互联网营销公司 网络安全基础知识 机电营销软件 单网页网站全网营销 执行系统 无缺陷营销 b2b网络营销过程 网络安全法对央行履职 国际网络安全法 网络安全. 网络安全 数据取证 网络安全应该注意什么 金融网站开发方案 xx旅行社网站建设方案 企网站技术解决方案为申请虚拟主机 网站线框图 广告网络营销推广师 网络安全应该注意什么 宣城网站建设 学网络营销的好处 2017 网络安全 断网 宣城网站建设 建网站怎么上线 南宁互联网营销公司 企业网络安全策划 群发营销 网络安全软考 招聘 信息安全,-1 B2B网络营销难点 关于加强党政部门云计算服务网络安全管理的意见 信息安全管理指引 网络建设网站 网站信息安全评估报告 淘宝店铺线上营销 2015网络安全趋势 营销人优点 搜索引擎营销理论基础 高校网络安全案例 山科信息安全怎么样 2016年网络安全现状分析 企业网站建设 信息安全等级保护测评中心 杭州g20峰会网络安全 苹果支付信息安全吗 作品网站 山东网络安全大赛报名 网站推广教程 大华 网络安全 深圳网站建设设计 作品网站 外贸邮件营销效果 企业网站制作设计 搜索引擎营销怎么做 hd网络信息安全 信息安全工程师注册 2015网络安全趋势 叫兽学院网络安全随身碟密码 建网站怎么上线 情感营销策略案例 很有风格的网站有哪些 保定市网站制作公司 网络安全业务 淘宝店铺线上营销 职业技能大赛信息安全 公司营销网站制作 管理网站制作 全网营销系统 深圳 台州网站优化 网站制作帐户设置 学互联网营销有用吗 网信部门和有关部门违反网络安全法第三十条规定南昌网站设计特色 布吉网站建设 中国亚马逊营销的优势 营销型网站方案ppt 承德网站制作加盟 信息安全等级保护测评指南 武汉信息安全网org,-1 灵动网站建设 网络安全攻击 平台 定制建网站 网上超市的网络营销 天津网站建设 2015中国网络安全技能大赛