Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
33 lines (24 loc) · 533 Bytes

widget.rst

File metadata and controls

33 lines (24 loc) · 533 Bytes

Widget API

.. index:: widget

创建widget。

  • 参数:
    • object options: 配置信息
  • 返回: KWidget

示例:

var widget = K.widget({
        z : 100,
        width : 200,
        height : 100,
        html : '<strong>abc</strong>123<strong>abc</strong><strong>abc</strong>',
        css : {
                border : '1px solid #A0A0A0',
                background : '#F0F0F0'
        }
});