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://zW6.shenzou.cn/" class="btn" data-dismiss="modal">Close</a>
    <a href="https://f.shenzou.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://rfexlof.shenzou.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://rfexlof.shenzou.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.

北京建设网站公司移动营销形式包括为了提高网络安全网络营销能力秀公众号网络营销平台分析报告无锡优化营销国家网络与信息安全中心昆明企业网站开发单位主要网络安全业务手机网络营销的案例凡客建网站人生不止有眼前的苟且,仔细看,还有更远的...... 读者群:913285821陆冲穿越到与母星似是而非的高武蓝星,觉醒武功自动修炼系统。 纳气诀三百六十五天不间断修炼,修为没有瓶颈; 开碑手知耻后勇,修炼速度翻倍,突破到大成; 金钟罩觉得自己还能抢救,自行推演成为神级武学…… 全球进化,异兽复苏,都是我的菜; 外星文明即将入侵,倒计时十年,请准备迎接; 神明百年后降临,届时将奴役蓝星…… 蓝星只是一级文明? 外星异族:谁说的,站出来试试! 万族入侵,华夏禁行!异能者的觉醒,使人类面临着悬崖上的抉择。 强权与堕落,腐朽与血腥,谁来拯救混乱中的大陆? 一枚少年。 一个系统。 一句真言。 大易王朝景元年间,时国师夜天为天下至强者,把持朝政,下鱼肉百姓,民不聊生;上残杀修士,致尸横遍野。啸聚虎狼之众,组成暗网,专门诛杀异己。一时间,九州天下,白骨露于野,千里无鸡鸣。当此之时,秦天易,起于青萍之末,止于草莽之间,举起反抗苛政的大旗,解救众生于水火之中。从微末境界,一步步成为天人强者,诛杀国师;运筹帷幄之间,将锦绣江山皆收入囊中。最终,秦天易携天下大势,结束了大易王朝的残暴统治,还天下万民一朗朗乾坤,最终成就千古一帝。 静谧,喧哗声响起,呼唤,既熟悉又陌生的...... 他们,在歌颂着同一个名字,也曾亲眼目睹过那样的意志。 黑暗即将吞噬晨曦,可黎明又在撕破夜空。 又一场充满欲望的屠杀,又一次以名义的奴役! 末世来临,a市突然爆发了一种丧尸病毒,传染性极强一旦感染将在最短时间内变成毫无人性和理智只会吃人的丧尸,世界各国为了控制住病毒,避免病毒扩散到世界各地,从而成立了世界人类保护协会,简称GTE组织,GTE组织封锁了整个a市,但出于人道主义还是定时向a市投放人道主义援助物资,主角将如何在这个物竞天择的险恶环境下存活下去呢。春秋五霸,战国七雄,合纵连横,逐鹿中原虽然高杰米的年龄只有九岁,但是聪明伶俐。在经历案子的过程中,高杰米与犯人斗智斗勇,并且帮助四川警局抓住犯人,从此名扬四海。1900年,二十世纪开篇,工业革命,洋务运动,百日维新,义和闹剧…… 内忧外患之下,一个庞大的东方古国,处在风雨飘摇之中,命运多舛。 就在这年,一个来历奇异的江南少年,带着现代知识和技能,一头扎进这乱世漩涡之中。作者是个小孩子,随便写写,还往多给写简易啊
河北邢台wap网站建设 网络安全字体设计 公安局网络安全解决方案 网络安全人才培养 美国 信息安全公司 怎么学网络营销整合 移动营销形式包括 信息安全的公司排名,-1 光谷做网站 公安局网络安全解决方案 精神不振的心理调适【www.richdady.cn】 冤亲债主化解【www.richdady.cn】 强迫症的案例分享咨询【www.richdady.cn】 冤亲债主干扰的预防措施【www.richdady.cn】 阴间生活的前世故事【www.richdady.cn】 前世缘份的前世案例咨询【企鹅383550880】√转ihbwel 前世今生的咨询方式咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 特殊学校的教育理念【企鹅383550880】√转ihbwel 耳鸣的原因分析【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 投资项目的咨询技巧威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 事业不顺的职场突破技巧有哪些?咨询【σσЗ8З55О88О√转ihbwel 暗恋的原因分析【企鹅383550880】√转ihbwel 前世缘份的重逢故事【www.richdady.cn】√转ihbwel 改善亲子关系的技巧咨询【σσЗ8З55О88О√转ihbwel 儿子抑郁症的环境影响【σσЗ8З55О88О√转ihbwel 儿子抑郁症的咨询技巧【企鹅383550880】√转ihbwel 前世老公的前世案例【www.richdady.cn】√转ihbwel 学习成绩差的自我提升咨询【企鹅383550880】√转ihbwel 事业不顺的解决方法咨询【企鹅383550880】√转ihbwel 孩子学习不好的环境影响咨询【σσЗ8З55О88О√转ihbwel 广州旅游网站建设设计 借势营销案例 杭州培训网站建设 贵州 跨境电商网站建设 国家网络安全局官网 facebook营销推广范本 信息安全运维管理,-1 网络营销公司的架构 河北做网站哪家公司好 成都网站设计公司价格 长沙 做网站 印度 网络安全企业 收购 江西神州信息安全评估中心 山西省信息安全服务资质 揭阳网站建设 信息安全行业新技术 信息安全认证体系,-1 网络安全 推荐 公司网站定制 龙华网站建设 流程网站 企业网站多少钱 江西神州信息安全评估中心 网络安全 的段子 公安局网络安全解决方案 网络安全 大数据分析 网站怎么弄 为了提高网络安全 国家网络与信息安全中心 手机网络营销的案例 主流信息安全产品和服务包括,-1 网站设计价格大概是 重庆新浪营销 邢台做网站哪儿好 移动营销形式包括 论在线营销 网络安全字体设计 如何建立自己的网站 危害网络安全次数 南京中小企业网站制作 搜索引擎营销包括 武汉信息安全网org,-1 网络安全教程2015 网络安全字体设计 网络安全预警防御技术 商城网站建站程序 网络营销广告的沟通机制是什么 蜂鸣营销 免费婚庆网站模板 国内全屏网站有哪些 信息安全等级分为几级 南京网站制作公司 企业网络营销策路分析 济南网站建设企业 信息安全认证体系,-1 郑州网站建设电话 广州旅游网站建设设计 2012到2013中国信息安全状态及发展趋势 深圳市建网站 广西信息网络安全协会 信息安全 网络安全预警防御技术 互联网软文营销案例 美团营销推广流程 国内全屏网站有哪些 网站app开发 论在线营销 杭州培训网站建设 徐州网站建设 长沙 做网站 网络整合营销网络广告 如何与网站管理员联系 网络安全 soc 网络营销软件代理 淄博网站 徐州网站建设 腾讯信息安全运营中心 信息安全认证中心 如何建立自己的网站 手机网络营销的案例 网站着陆页 公安局网络安全怎么进 网络营销平台分析报告无锡优化营销 高端网站设计 推广型网站制作哪家好 seo网站诊断 怎么学网络营销整合 数据网网络安全 全国信息安全大赛选题 龙华网站建设 网站如何设计搜索框 佛山营销网站建设服务 网络营销研究调查问卷 借势营销案例 淄博做网站 广州旅游网站建设设计 陕西营销型手机网站建设 运营商信息安全产品目前个人网民的网络安全状况(结合2013年统计报告说明) 杭州培训网站建设 网络安全开发 河北做网站哪家公司好 国家网络安全局官网 河北邢台wap网站建设 天津交通信息安全网 信息安全运维管理,-1 光谷做网站 凡客建网站 河北做网站哪家公司好 流程网站 营销的宏观环境 长沙 做网站 免费建立个人网站 信息安全服务架构图 江西神州信息安全评估中心 商务网站建设 广州网络安全会议 2017 揭阳网站建设 重庆新浪营销 珠海网站建设 信息安全认证体系,-1 信息安全的公司排名,-1 网络安全标识 公司网站定制 网站常用颜色 怎样给网站增加栏目 流程网站 山东网站优化公司 全国信息安全大赛选题 江西神州信息安全评估中心 网站优化推广公司 网络安全标识 公安局网络安全解决方案 网站优化怎么做 网络营销广告的沟通机制是什么 网站怎么弄