我想在按钮上使用click事件在行顶部创建一个行和一个加号图标。之后,用户可以通过单击加号图标添加或删除创建行内的列(以及行内最多四列),并使用减号图标删除列。 让我们看一下这个场景: 当我们点击加号图标时:
if(class == row) then row will divide into two column;
if( class == col-sm-6) then row will divide into three column;
if(class == col-sm-4) then row will divide into four column;
if(class == col-sm-3) then all column will blank.
这是codepen url: https://codepen.io/iqbalrehan/pen/bYpJPJ