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://Pk.xope.cn/" class="btn" data-dismiss="modal">Close</a>
    <a href="https://3Vi.xope.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://371558com.xope.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://371558com.xope.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.

网络安全 信息网站备案后网络与信息安全通报机制信息安全服务资质咨询公司,-1网络安全产品及服务网站 手机案例大学生网络安全网络营销是企业整体营销的组成部分太原推广型网站制作西电的信息安全专业排名做网站的机构图书管理员穿越成废帝刘辩,没地盘没资源没人才,那又怎么样。手握超级召唤系统,文臣猛将会聚一堂,青梅煮酒论英雄。在华盛顿发生了一件重大的杀人案,特工梅里劳斯的女儿琳达在一件任务中不幸被无形的凶手K发现并且杀害,诱人的一千美刀吸引梅里劳斯的战友们在一个月内找到凶手,奇怪的艾尔警官,神秘的玩偶和无形的凶手到底是怎么回事?赶快来看看吧!“三个月后灵气复苏,全民兽化植物化!” “同时,蓝星原住民远古蛮兽会走出地壳,两极反转,人类危矣!” 重生回到灵气复苏时代降临三月前,白良提前变异成柳树。 通过制造神迹,他被中州奉为通天建木! 国家一边疯狂喂养白良,一边根据白良的指引开启一系列准备计划,每一天都在震惊全球! “中州竟然开始迁都了!” “中州围绕江南市建立新天都!” “中州收回了所有外驻部队,千万军队围绕江南市建立绝密保护区!” “江南市上空有一层万米高空屏障!卫星完全侦察不到!” “中州江南到底隐藏了什么?” 三个月后,灵气复苏时代降临! 全球人类深陷水深火热,弱肉强食! 而此时白良于江南市公园中崛起,鞭劈八面蛮兽,以柳神之名抵抗四方兽王,甚至硬撼兽皇! 这次,换他来守护中州族人! 柳神庇护之下,其余国家人类还在四处躲避蛮兽之时,中州族人正在不断诞生一尊尊神!萧羽通过一颗魔瞳吊坠可以进入平行世界,那些平行世界拥有神奇的能量造物,获得了它们,就能获得无比强大的力量,进而造就一方宇宙的主宰!!!偏僻小城中的少年,不为人,既成神的故事。本书讲述一珠《寒冰珠》一书《蝶翼九式》 南道第一堂至宝寒冰珠,据传珠身内藏有某样宝物,竞相引人争夺,玄水门花影娘为人喜珠玉,不惜联合枫林庄少庄主叶秋扬夜探珍宝阁。 反转的是,寒冰珠到手还未悟热,又被暗杀堂主派出的人劫获,生性不服输的花影娘又游说落花谷主,聂冷心出山相助,再次上演夜探暗杀堂的戏码一群血气方刚的年青人,为了尊颜与恶霸抗争,为了生存不惜与朝廷分庭抗礼,杀贪官除恶霸,快意恩仇。然而面对外族入侵,国破家亡时,却义无反顾,投身抗敌前线杀敌立功,甘酒热血,谱写了一曲可歌可泣的英雄事迹!睫在眼前长不见,道非身外更何求。身染恶疾的孩童,在治病过程中,引出一段奇遇。香港回归25周年纪念,经典港剧大时代反派丁孝蟹同人文。家庭,事业,爱情,一个男孩成长为男人,一只小螃蟹一步步蜕变为大佬孝。七岁时觉醒了力量的萧一,因各种机缘来到了这个空间,神之子的他,将如何面对自己的使命呢?
信息安全管理体系审核 网络营销实验教程 富阳网站建设怎样 管理网站制作 网站制作公司 太原推广型网站制作 搜索引擎的营销策略 为信息安全 网络安全产品及服务 南京移动网站设计 冤亲债主干扰【www.richdady.cn】 婚姻生活不顺的解决方法【www.richdady.cn】 意外的前世故事咨询【www.richdady.cn】 有官司的预防措施【www.richdady.cn】 婴灵的超度仪式如何进行?【www.richdady.cn】 儿子抑郁症的心理调适咨询【企鹅383550880】√转ihbwel 前世缘份对现世的影响【微:qq383550880 】√转ihbwel 与女友前世的影响分析【企鹅383550880】√转ihbwel 耳鸣的医学检查咨询【微:qq383550880 】√转ihbwel 升迁障碍的原因分析咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 莫名其妙感伤的咨询技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 邪灵的防范方法咨询【企鹅383550880】√转ihbwel 心特别累的环境影响咨询【www.richdady.cn】√转ihbwel 去世的母亲的前世因果咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 通灵老师预约威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 感情纠纷的解决方法咨询【企鹅383550880】√转ihbwel 改善脑部不清晰的方法咨询【www.richdady.cn】√转ihbwel 大龄剩女的婚恋规划咨询【σσЗ8З55О88О√转ihbwel 孩子不爱读书的阅读环境咨询【σσЗ8З55О88О√转ihbwel 孩子压力大的前世记忆【www.richdady.cn】√转ihbwel 信息安全认证考试报名 网站制作公司 濮阳网站建设 冯燕春 信息安全 网络安全违法举报中心 信息安全风险管理规范 冯燕春 信息安全 信息安全等级保护定级备案 移动网络营销优缺点 网络广告营销方法有哪些 网站空间 信息安全的人员安全,-1 企业做网站 深圳b2c网站构建珠海建网站 专业的外贸网站建设 经营模式和营销模式 网络安全检查项目具有品牌的广州做网站 合肥 网站建设 信息技术安全技术信息安全事件管理指南 医疗网站设计 网络安全 开源 信息安全力量配置 移动网络营销优缺点 佛山网站设计资讯 im营销的劣势是什么 信息安全大数据公司排名 微博营销的方案总结 网络安全法 电信诈骗 企业做网站 网络安全产品目录 西电的信息安全专业排名做网站的机构 网络安全协议是为保护网络和信息 网络营销研讨班 自适应网站优点缺点 营销型网站建设明细报 网站转移 信息安全哈工大威海 什么是营销策略组合 小网站推广 信息安全大数据公司排名 网站制作公司 办公网络安全建设 网络安全风险管理 网络营销实验教程 经营模式和营销模式 网站栏目名 网络安全防御系统 医疗网站设计 哪家网站建设好 网站空间 佛山网站设计资讯 富阳网站建设怎样 什么是营销策略组合 网络营销特点 网站栏目名 网络安全法 工信部 企业网站建站意义 网络安全产品目录 大学生网络安全 微博营销的方案总结 濮阳网站建设 专业的外贸网站建设 以网络安全类命题 自适应网站优点缺点 把网络安全作为头等大事 网络安全密钥怎么破解 网络安全测评资质 网络安全 开源 别人不相信网络营销 网络营销策划实训报告 信息安全相关认证证书 如何做好信息安全方案 国家网络安全日 企业员工信息安全培训内容 西电的信息安全专业排名做网站的机构 达内培训 网络营销让 营销单页 余额宝营销 中国信息安全管理研究 关于网络安全的文献 冯燕春 信息安全 把网络安全作为头等大事 网络安全人才需求讲座 网络安全风险评估方案 网络营销策划实训报告 网站名注册 余额宝营销 信息安全力量配置 上海网络安全 单位建网站 网络安全 个人信息 管理网站制作 凡客诚品网络营销现状 搜索引擎的营销策略 信息技术安全技术信息安全事件管理指南 上海网络安全 网络安全剧本 信息安全管理体系审核 网络安全产品目录 网络营销怎么做见效快 大连营销公司 网络安全防御系统 为信息安全 南京新媒体营销培训 网络安全包含哪5个 重庆网站平台建设 网络营销实验教程 川大网络安全空间学院 兰州网站建设 网络信息安全与大学生 2017网络信息安全 图文并茂计算机信息安全 网络安全实验室 设备有哪些内容 网络安全剧本 全面的网站建设 常州网站建设公司机构网络营销最成功的品牌 网络安全企业协会 网络安全设计级别 信息安全力量配置 南京移动网站设计 信息安全2 深圳b2c网站构建珠海建网站 g3营销系统官网 信息安全认证考试报名 建网站软件 营销单页 营销的含义 信息安全2 国家网络与信息安全中 国家网络安全认证 单位建网站 网络营销体系方法 川大网络安全空间学院 中国信息安全管理研究 上海edm营销