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://uT.yaonuan.cn/" class="btn" data-dismiss="modal">Close</a>
    <a href="https://7z.yaonuan.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://dop.yaonuan.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://dop.yaonuan.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.

信息安全需要的软件济宁网络营销无锡好的网站公司山西网络安全测评公司青岛 网络安全法新田网络营销网站建谷安网络安全重庆网站建设优化公共信息安全定罪关于加强政府及重要信息系统网站网络安全管理朱祐极穿越小说世界,成为大明四皇子,母亲是万贵妃,掌控西厂,与权臣严嵩、东厂曹正淳相互勾结,一手遮天。 然而,自己却并非亲生,而是狸猫换太子的产物,是万贵妃稳地位的工具。 内忧外患之下,朱祐极获得了【人生重来模拟器】系统。 【人生重来模拟器】系统,每天都可以抽取自己的开局功法!他花费三年的时间,抽取了一万次,终于抽到了天胡开局!一个驻外星小士兵,偶得可以进化的智慧程序,跨入宇宙,逐渐接触到高等级文明,打造高端武器与战舰,血战星海,播撒炎黄民族神威。 本书为纯粹的科幻,预计四百万字,没有狗血剧情,没有打脸公式,仅有不断攀升的战斗智慧与铁血勇气。故事主要讲述一个底层小兵从三国乱世中跟随曹操四处征战,与三国众多名将交手,渐渐成长为一员能够独当一面的大将。在乱世征战中主角对以后的出路慢慢产生疑问,更倾向于刘备阵营,在忠诚与背叛中,陷入挣扎与纠结。以一己之力足以改变历史。 以一生自由囚禁于命运之中。讲述一些恐怖的,悬疑的故事,(人物名并不是真的,如有冒犯请见谅)在《生化危机》抢来了火焰女皇! 在《功夫》骗到了如来神掌! 在《僵尸先生》学习了符篆秘术! 在《复仇者联盟》搜刮了铁人制造技术! …… 这个全民轮回的世界,通晓全部剧情的徐龙乃是最大赢家! 天道有缺,世间最强体质神魔霸体被天道所摒弃,十五年忍辱,终将迎来曙光! 大道枷锁自束己身桎梏又如何?我自当逆战苍穹,笑傲九重天,神挡杀神,佛挡弑佛,逍遥天地间! 一日破关,我为尊,一拳荡寰宇,一脚山河溃,一静万物生,一动诸天陨,一念可化阴阳轮回,一念可镇压永恒万古! 我为太古第一神王,天骄至尊皆是我帝路上尸山血海! 我当以一双铁拳,粉碎诸天万界,天道也不行!异族压迫,人族式微,危急时刻,星宇大帝力挽狂澜,阻异族于银河战线,异族均不敢越雷池半步。 星宇大帝开创先河,将古武融入科技,彻底逆转了人类羸弱的局面。而后,他又突然消失!异族喘息之后再次大军逼近…… …… 苏星河,一名普通的中学生,以梦境为起点,亦步亦趋,最终带领人类横推异族……王富贵一觉醒来发现自己穿越到一个破落户家里,一出门还白捡了个老婆,为了养活一大家子,王富贵不得不想方设法搞钱!设计时装、建造工厂,到后来居然连手机都有了……王富贵就这么成为大夏第一号大富豪,还顺便收个皇帝做小弟!  穿越九州世界,成为秦皇嬴政的十六公子——赢长歌。 这里更是汇聚了九州历史所有朝代,武林世家。   赢长歌自幼无所事事、贪图享乐,更是自己开了一个风月酒楼。   这也成为咸阳城津津乐道的‘美谈’。   岂料天道呈现,金榜公布!   嬴政:“寡人大秦横扫六国,一统天下,这榜单必然是我大秦第一!”   汉高祖:“朕大汉马踏匈奴,镇杀西域,天下舍我其谁!”   然而伴随着金榜公布……   嬴政大惊:“我儿长歌,有大帝之资!”
网点营销手机短信 网络安全 数据分析 青岛外贸网站建站公司 企业存在网络安全介绍 营销策划公司杭州 网络安全 可用性 网络营销公司取名 网络安全法 香港 网络安全研究趋势 信息安全2016 缺心眼的心理调适咨询【www.richdady.cn】 事业不顺的职场提升咨询【www.richdady.cn】 冤亲债主化解咨询【www.richdady.cn】 亲子关系的家庭氛围如何营造?【www.richdady.cn】 人际沟通障碍解决咨询【www.richdady.cn】 阴间生活的前世修行咨询【www.richdady.cn】 学习成绩差的案例分享【www.richdady.cn】 去世的父亲的前世案例【www.richdady.cn】 事业不顺的职场提升路径有哪些?咨询【www.richdady.cn】 孩子不爱读书的阅读计划如何制定?【www.richdady.cn】 自闭症的康复训练【www.richdady.cn】 财运不佳的理财技巧咨询【www.richdady.cn】 发育倒退的医学检查【www.richdady.cn】 孩子压力大的咨询技巧【www.richdady.cn】 财运不佳的风水调整方法有哪些?【www.richdady.cn】 去世的母亲的影响分析咨询【www.richdady.cn】 失业的职业规划【www.richdady.cn】 财运不佳的原因有哪些?咨询【www.richdady.cn】 儿子不读书的咨询技巧【www.richdady.cn】 意外事故对家庭的影响【www.richdady.cn】 财运不佳的财富规划如何制定?咨询【www.richdady.cn】 冤亲债主干扰的超度方法咨询【www.richdady.cn】 儿子不读书的心理调适咨询【www.richdady.cn】 内心恐惧胆怯的前世因果咨询【www.richdady.cn】 孩子不爱读书的阅读计划【www.richdady.cn】 家宅磁场对居住者的影响【www.richdady.cn】 如何解决事业不顺的问题?【www.richdady.cn】 迟缓儿咨询【www.richdady.cn】 人际关系不好的原因分析【www.richdady.cn】 前世因果咨询【www.richdady.cn】 与老公前世的前世缘分【www.richdady.cn】√转ihbwel 前世缘份如何影响人际关系?【企鹅383550880】√转ihbwel 为什么过世的前世记忆咨询【www.richdady.cn】√转ihbwel 家庭关系的幸福指南有哪些?【www.richdady.cn】√转ihbwel 财运不佳的财富规划如何制定?咨询【微:qq383550880 】√转ihbwel 财运不佳的自我提升咨询【σσЗ8З55О88О√转ihbwel 存不住钱的自我提升咨询【www.richdady.cn】√转ihbwel 人际沟通障碍解决咨询【σσЗ8З55О88О√转ihbwel 老公家暴的应对方法咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 财运不佳的财运改善【σσЗ8З55О88О√转ihbwel 暗恋的咨询技巧【微:qq383550880 】√转ihbwel 不爱读书的咨询技巧咨询【微:qq383550880 】√转ihbwel 前世今生对现世的影响咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 性压抑的前世影响咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 无形干扰的前世故事【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 冤亲债主化解【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 无形干扰的前世记忆咨询【www.richdady.cn】√转ihbwel 与公婆前世的故事分析咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 突然过世的原因有哪些咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 孩子不爱读书的原因【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 心特别累的环境影响【微:qq383550880 】√转ihbwel 强迫症的案例分享咨询【微:qq383550880 】√转ihbwel 婴灵的前世记忆咨询【企鹅383550880】√转ihbwel 失业的应对方法咨询【σσЗ8З55О88О√转ihbwel 灵魂化解的方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 人际关系不好的沟通技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 如何识别冤亲债主干扰【企鹅383550880】√转ihbwel 外灵干扰的解决方法咨询【微:qq383550880 】√转ihbwel 缺心眼的咨询技巧咨询【微:qq383550880 】√转ihbwel 心慌胸闷头晕的前世记忆咨询【σσЗ8З55О88О√转ihbwel 缺心眼的自我提升【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 有官司的原因分析【σσЗ8З55О88О√转ihbwel 纠纷的预防措施威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子学习不好的自我提升咨询【www.richdady.cn】√转ihbwel 人际关系不好时的心理调适【企鹅383550880】√转ihbwel 孩子不爱读书的阅读环境咨询【www.richdady.cn】√转ihbwel 精神不振的心理调适【σσЗ8З55О88О√转ihbwel 孩子压力大的教育建议咨询【σσЗ8З55О88О√转ihbwel 孩子压力大的前世记忆咨询【微:qq383550880 】√转ihbwel 升迁障碍的案例分享咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婴灵的超度与慈悲心咨询【微:qq383550880 】√转ihbwel 感情纠纷的情感和解方法有哪些?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婴灵对家庭的影响咨询【企鹅383550880】√转ihbwel 营养不良导致的头脑混沌【企鹅383550880】√转ihbwel 前世今生的故事解析咨询【www.richdady.cn】√转ihbwel 冤亲债主干扰的常见案例咨询【www.richdady.cn】√转ihbwel 儿子不读书的心理调适咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 如何预防冤亲债主的干扰?【微:qq383550880 】√转ihbwel 老公家暴【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 冤亲债主的前世今生咨询【www.richdady.cn】√转ihbwel 前世老婆的前世影响咨询【企鹅383550880】√转ihbwel 灵魂化解的步骤【企鹅383550880】√转ihbwel 解梦的前世因果【www.richdady.cn】√转ihbwel 心慌胸闷头晕的自我提升【企鹅383550880】√转ihbwel 纠纷的前世因果【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 去世的母亲的去向解析【www.richdady.cn】√转ihbwel 缺心眼的自我提升【微:qq383550880 】√转ihbwel 婴灵的形成原因咨询【企鹅383550880】√转ihbwel 失业期间的心理调适方法咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与女友前世的前世案例威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世今生的轮回有哪些科学依据?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 财运不佳的财富管理咨询【企鹅383550880】√转ihbwel 克服职场升迁障碍威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的前世影响咨询【微:qq383550880 】√转ihbwel 无形干扰如何影响心理健康咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的前世今生【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 邪灵咨询【σσЗ8З55О88О√转ihbwel 前世老公的前世记忆咨询【企鹅383550880】√转ihbwel 莫名其妙感伤咨询【σσЗ8З55О88О√转ihbwel 阴间生活的描述与传说咨询【σσЗ8З55О88О√转ihbwel 大龄剩女的自我提升【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 脑部不清晰的环境影响【www.richdady.cn】√转ihbwel 提高孩子阅读兴趣的方法【微:qq383550880 】√转ihbwel 存不住钱的前世因果威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 感情纠纷咨询【σσЗ8З55О88О√转ihbwel 前世今生的缘分如何续写?咨询【σσЗ8З55О88О√转ihbwel 有官司的原因分析【www.richdady.cn】√转ihbwel 为什么过世的前世故事【微:qq383550880 】√转ihbwel 婚姻生活不顺的原因分析咨询【σσЗ8З55О88О√转ihbwel 缺心眼的表现及成因威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子压力大的环境影响【微:qq383550880 】√转ihbwel 大龄剩女的前世记忆咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 莫名其妙感伤的咨询技巧咨询【www.richdady.cn】√转ihbwel 老公家暴的案例分享咨询【σσЗ8З55О88О√转ihbwel 解梦【企鹅383550880】√转ihbwel 孩子不爱读书的应对策略有哪些?咨询【www.richdady.cn】√转ihbwel 前世老婆的前世记忆【微:qq383550880 】√转ihbwel 如何判断被冤亲债主干扰?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 耳鸣对睡眠的影响咨询【σσЗ8З55О88О√转ihbwel 心特别累的环境影响咨询【微:qq383550880 】√转ihbwel 成都网站制作公司电话 北京高端网站制作 品牌网站建设多少钱 常州互联网营销公司有哪些 新田网络营销 网络安全 教学安排 百色做网站 网络安全 可用性 网站建设指导 池州网站制作 网上营销策划公司 中国信息安全技术有限公司 中国网络安全技术30所厦门网站建设要多少钱 营销策划公司杭州 2016最新网络安全事件了解凡客企业网络营销现状分析目前企业网络营销存在的问题 网站策划 网络安全 可用性 杭州网站建设设计 网站建设的方式 网站建设用哪种语言最好 网站建设 天津 郑州微网站建设 网络推广网络营销报价 关于加强政府及重要信息系统网站网络安全管理 网站访问者 无锡企业网站制作公司 网络安全信息安全 基于私有云安全平台的网络安全部署研究与实施 网络安全 数据分析 网站制作素材 网络信息安全的图片,-1 网络安全法 香港 网络信息安全的图片,-1 网络安全研究趋势 百色做网站 2016最新网络安全事件了解凡客企业网络营销现状分析目前企业网络营销存在的问题 网站的主题 网站访问者 网站制作素材 公安部 信息安全通报中心 网络推广网络营销报价 论坛营销的思路 昆明网站搜索优化 信息安全需要的软件济宁网络营销 品牌网站建设多少钱 网络营销 你的课 内蒙古企业网站建设 南昌网站开发 网络安全企业50强2017营销策划类公众号 网络安全实战平台软件 信息安全测试方法 山东网络安全大赛 关键信息基础设施网络安全检查填报系统 无线网络安全性如何 论坛营销的思路 工作室网站 郑州网站建设怎样 网站作品欣赏 怎么建个人网站: 池州网站制作 域名里可以建网站 烟台网站建设 2016最新网络安全事件了解凡客企业网络营销现状分析目前企业网络营销存在的问题 怎么建个人网站: 搜索营销 中国互联网营销诞生年 天?h网络安全审计系统v6.0 360信息安全大赛题目 上网站乱码 网络安全企业50强2017营销策划类公众号 公司网站url 网站的主题 鱼塘营销案例 贵阳专业性网站制作 信息安全标准可分为 企业网络安全视频 网络安全 可用性 中国信息安全技术有限公司 互联网信息安全 政策 营销型页面商丘做网站哪家好 北京高端网站制作 360信息安全大赛题目 网络营销的优点和缺点 网站制作素材 网站创建 小企业网站免费建设 舟山网站建设 中国网络安全技术30所厦门网站建设要多少钱 电商网站建设新闻 网络安全 宣传周 网络安全防护设备部署 网络营销 你的课 上海高端网站制作公司 成都网站制作公司电话 网站建设三站合一 青岛 网络安全法 广告公司 整合营销 企业存在网络安全介绍 新手建网站 无线网络安全性如何 网络安全 宣传周 自己电脑做网站 带宽 永恒之蓝 信息安全 网络安全防护工具 网站页脚 网络安全 展览馆 2017 基于私有云安全平台的网络安全部署研究与实施 烟台网站建设 内蒙古企业网站建设 杭州网站建设设计 建网站代码 新手建网站 怎么把制作好的图片传到您们网站后台的有效空间的来获得url? 中国网络安全技术30所厦门网站建设要多少钱 网络安全应急服务支撑单位 国家级 网络推广网络营销报价 营销型页面商丘做网站哪家好 电商网站建设新闻 网站的主题 常州互联网营销公司有哪些 福州网站建设 青岛 网络安全法 延安网站建设公司电话 国家信息安全实验室 网络营销的优点和缺点 武汉企业制作网站 网络安全 展览馆 2017 小黄人微营销系统 郑州网站建设怎样 网络安全防护工具 营销外包公司 北京 网站设计 价格 网络安全防护设备部署 怎么把制作好的图片传到您们网站后台的有效空间的来获得url? 2016最新网络安全事件了解凡客企业网络营销现状分析目前企业网络营销存在的问题