2014-04-29 55 views

回答

0

您需要在select的change事件中調用bootstrap的模式。

$('select').change(function() { 
    var addProj = $('select option:selected').val(); 
    if(addProj === 'Add Project'){ 
    $('#example').modal(); 
    } 
}); 

DEMO http://jsbin.com/qetarabu/1/edit