2013-08-07 88 views
1

簡單的問題,但我沒有成功找到令人滿意的答案。Twitter Bootstrap警報(通知)動態更改文本

當我有一個引導警報:

<div id='alert' class='alert alert-error hide'>Alert.</div> 

我想利用被控制的文字之一的jQuery JavaScript中,我只是看着這個解決方案this problem,但它必須是那麼複雜?真?

+3

該溶液爲約5的Javascript的線。我認爲你不能合理地稱之爲複雜。 – glosrob

+0

[通過JavaScript動態創建引導警報框]的可能副本(https://stackoverflow.com/questions/10082330/dynamically-create-bootstrap-alerts-box-through-javascript) –

回答

2

引用的解決方案,現在想出了這個:

HTML:

<div id='alert' class='hide'></div> 

的Javascript:

function showAlert(message) { 
     $('#alert').html("<div class='alert alert-error'>"+message+"</div>"); 
     $('#alert').show(); 
    } 
showAlert('variable'); 

工作jsfiddle

0
<input type = "button" id = "clickme" value="Click me!"/> 
<div id = "alert_placeholder"></div> 
<script> 
bootstrap_alert = function() {} 
bootstrap_alert.warning = function(message) { 
      $('#alert_placeholder').html('<div class="alert"><a class="close" data-dismiss="alert">×</a><span>'+message+'</span></div>') 
     } 

$('#clickme').on('click', function() { 
      bootstrap_alert.warning('Your text goes here'); 
}); 
</script>​ 
4

簡單:$("#alert").text("My new Text");