如果用户单击选择颜色,则增加模态窗口的大小

时间:2014-05-04 16:08:20

标签: css css3 twitter-bootstrap-3

如果用户点击了颜色选择,则增加模态窗口的大小。

An example of how it happens in the moment.

1 个答案:

答案 0 :(得分:0)

您可以在选择的更改事件中执行此操作.Ex:

$('select').change(function(){
    $('.modal-content').css('width', '900px');
});