3
我有一個圖像,當它的點擊我想顯示一些HTML(一些文本和按鈕的div)。我知道我可以在窗口或面板中使用html配置,但是可以顯示元素而不將它封裝在組件中?ExtJS - 如何呈現html元素
下面是圖片代碼,然後單擊處理程序:
{
xtype:"image",
src:"/blah/helpicon.png",
listeners:{
render: function (c) {
c.getEl().on('click', function(e) {
//show html here, targeted on image icon
}, c);
}
}}
這是我想說明的HTML。所有這一切真的是一個奇特的工具提示,就是這樣。由於它的工具提示,我不想將它封裝在一個窗口中:
<div id="test" class="hopscotch-bubble-container" style="width: 280px; padding: 15px;"><span class="hopscotch-bubble-number">1</span>
<div class="hopscotch-bubble-content"><h3 class="hopscotch-title">Step 1</h3>
<div class="hopscotch-content">Step 1 Instructions here.</div>
</div>
<div class="hopscotch-actions">
<button id="hopscotch-prev" class="hopscotch-nav-button prev hide">Back</button>
<a class="hopscotch-bubble-close" href="#" title="Close">Close</a>
</div>
謝謝。