Sto utilizzando Google Chrome.
Utilizzando Twitter Bootstrap, voglio aggiungere un semplice avviso, sfortunatamente il alert non si chiude quando si preme x!L'avviso di esclusione tramite Twitter Bootstrap non funziona?
Ecco il mio codice basato su alert documentazione:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="alert">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
</body>
</html>
E ho anche provato:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="alert">
<a href="#" class="close" data-dismiss="alert">×</a>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
</body>
</html>
Ciò che manca per rendere respingere?
Non strano, dal momento che hai completamente dimenticato bootstrap.js :) – davidkonrad
Funziona :) .... Grazie :) .... Puoi metterlo come risposta in modo che io possa aumentare i tuoi punti :) –
Non importa , solo un errore grossolano - si verifica sempre :) – davidkonrad