How to group buttons in different forms tags in Bootstrap

后端 未结 2 1575
陌清茗
陌清茗 2021-02-07 22:09

How do you group buttons within different form tags together in Twitter\'s Bootstrap?

Right now what I get is:

2条回答
  •  孤街浪徒
    2021-02-07 22:55

    You can use JQuery to achieve it.

    And with JQuery:

    $("#more").click(function() {
        $("#form1").submit();
    }
    

提交回复
热议问题