类似于hull.io的东西

时间:2013-09-02 17:24:29

标签: javascript jquery custom-data-attribute

我需要做类似 hull.io

的操作

例如我的用户在html中输入:

<div data-test-component="hello@test" data-test-provider="test"> </ div>

所以我的脚本应该查找并呈现正确的内容。

我做了一个小实验:

if ($('div').date('test-component') == "hello@test") {
     $ (document).find("[data-test-component = 'hello @ test']").html("Hello World")
}

它有效,但不认为这是最好的方法。 除了需要多个IF而且不能使用多个元素。

我想帮助解决这个问题。任何指导方针,前进之路。

1 个答案:

答案 0 :(得分:0)

Hull.js构建于Aura.js之上,为组件系统提供了这一功能。

您可以在这里查看来源: https://github.com/aurajs/aura

这可能是您最终想要使用的内容,因为它处理实例化和清理

组件