动态更改twitter bootstrap模式的文本

时间:2013-02-25 09:12:51

标签: javascript twitter-bootstrap

我在页面上有一个twitter bootstrap模式,它运行得很好。但是,有时我想在显示时动态更改其标题和正文。

我该怎么做?

    function showModal(){
      $("#ajaxModal").modal({keyboard: false, show: true, backdrop: 'static'});
    }

    function hideModal(){
      $("#ajaxModal").modal('hide');
    }


   ///.............
   showModal();
   //.........
   hideModal();

1 个答案:

答案 0 :(得分:3)

我曾经在同样的情况下工作过...这个例子可能对你有用..

这只是示例场景..我在模态 myModal 中找到元素

并传递了我的值,我已动态传递<强> 'ALERTMSG'

$('#myModal').find('p').html('<span style="color:#4F2817;">'+alertMsg+'</span>');