Browse Source

优化 dropdown 的 `id` 属性取值优先级

pull/1216/head
贤心 2 years ago
parent
commit
461ae352b8
  1. 6
      src/modules/dropdown.js

6
src/modules/dropdown.js

@ -113,8 +113,10 @@ layui.define(['jquery', 'laytpl', 'lay'], function(exports){
return newThat.reload(options);
}
//初始化 id 参数
options.id = ('id' in options) ? options.id : that.index;
// 初始化 id 属性 - 优先取 options > 元素 id > 自增索引
options.id = 'id' in options ? options.id : (
options.elem.attr('id') || that.index
);
if(options.show) that.render(rerender); //初始即显示
that.events(); //事件

Loading…
Cancel
Save