Jump to content
  • 0

Плагины bootstrap


xxnikolayxx
 Share

Question

Вот уже битых часа 3 не могу подключить плагин

http://xbreaker.github.com/plusstrap/javascript.html#alerts

Не понимаю, что нужно для этого сделать.

С JS отношения трудные.

Подскажите, о чем говорится в инструкции по подключению.

Перепробовал уже все варианты, которые в голову приходили.

Спасибо.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Это то понятно.

Меня волнует

Usage
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="#">×</a>

Не понятно куда надо засунуть функцию, чтобы она заработала на странице.

А главное - КАК?

Edited by xxnikolayxx
Link to comment
Share on other sites

  • 0

В итоге

<script src="/static/js/bootstrap-alert.js"></script>
<div class="alert">
<button class="close" data-dismiss="alert">?</button>
<strong>Предупреждение!</strong> Nulla vitae elit libero, a pharetra augue.
</div>

А сообщение не закрывается.

В чем ошибка

Файл bootstrap-alert.js - верный, путь и существование проверено 1000 раз.

Содержание следующее:

!function($){"use strict";var dismiss='[data-dismiss="alert"]',Alert=function(el){$(el).on('click',dismiss,this.close)}
Alert.prototype.close=function(e){var $this=$(this),selector=$this.attr('data-target'),$parent
if(!selector){selector=$this.attr('href')
selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,'')}
$parent=$(selector)
e&&e.preventDefault()
$parent.length||($parent=$this.hasClass('alert')?$this:$this.parent())
$parent.trigger(e=$.Event('close'))
if(e.isDefaultPrevented())return
$parent.removeClass('in')
function removeElement(){$parent.trigger('closed').remove()}
$.support.transition&&$parent.hasClass('fade')?$parent.on($.support.transition.end,removeElement):removeElement()}
$.fn.alert=function(option){return this.each(function(){var $this=$(this),data=$this.data('alert')
if(!data)$this.data('alert',(data=new Alert(this)))
if(typeof option=='string')data[option].call($this)})}
$.fn.alert.Constructor=Alert
$(function(){$('body').on('click.alert.data-api',dismiss,Alert.prototype.close)})}(window.jQuery);

Посмотрел в Хроме Отчеты об ошибках

Uncaught TypeError: Cannot read property 'fn' of undefined bootstrap-alert.js:13
Uncaught TypeError: undefined is not a function bootstrap.min.js:6
Uncaught TypeError: undefined is not a function bootstrap.js:23

Что это это может быть?

Не у кого не возникало проблем?

Попробуйте подключить.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy