0
A
回答
0
這是從dojo工具包網站上的教程中提取的示例。 它創建一個帶有新任務圖標的按鈕,並且沒有文本。
<script>
require(["dijit/form/Button", "dojo/domReady!"], function(Button) {
var button2 = new Button({
iconClass: "dijitEditorIcon",
showLabel: false,
label: "Click Me!", // analogous to title when showLabel is false
onClick: function(){ console.log("Second button was clicked!"); }
}, "btn2");
button2.startup();
});
</script>
你感興趣的是showLabel: false
其中隱藏的文本,iconClass: "dijitEditorIcon"
其中一位表示在CSS
定義爲了增加自己的「圖標」的圖標,請檢查下面的CSS :
.dijitEditorIcon {
background-image: url('images/editorIconsEnabled.png');
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
本質上講,你創建CSS類與背景圖像,那麼您應用的造型給您道場通過「iconClass
」屬性按鈕。
0
如果我想補充,你可以聲明使用這個(和這些例子使用的dijit的默認圖標):
<button id="insertNewItem" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass: 'dijitIconNewTask'" type="button"> Insert </button>
<button id="updateSelectedItem" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass: 'dijitIconEdit'" type="button"> Update </button>
<button id="deleteSelectedItem" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass: 'dijitIconDelete'" type="button"> Delete </button>
相關問題
- 1. 添加圖像到按鈕
- 2. C#/ XAML將圖像添加到按鈕
- 3. Android將圖像添加到按鈕
- 4. 將圖像添加到按鈕
- 5. 將圖像添加到jQuery按鈕
- 6. Blackberry - 將圖像添加到按鈕?
- 7. 不能將圖像添加到按鈕
- 8. 如何將圖像添加到按鈕?
- 9. 將圖像按鈕添加到gridview行
- 10. 如何將圖標添加到Xpages中的dojo按鈕?
- 11. 將側按鈕圖像添加到按鈕
- 12. 將「添加另一個精選圖像」按鈕添加到WordPress
- 13. Dojo DGrid-如何將按鈕添加到列標籤中?
- 14. 如何將多個按鈕添加到dojo網格單元
- 15. 如何將圖像或圖標添加到按鈕
- 16. 將圖像添加到列表視圖中的按鈕
- 17. 將圖像添加到其他視圖中的按鈕
- 18. 將圖標添加到輸入按鈕
- 19. 將圖片添加到按鈕
- 20. 將按鈕添加到樹視圖行
- 21. 將圖標按鈕添加到TinyMCE(Plone)
- 22. 將圖標添加到按鈕
- 23. 將引導圖標添加到按鈕
- 24. 將圖片添加到Facebook Like按鈕
- 25. 將圖標添加到jQuery按鈕
- 26. 將按鈕添加到圖表 - svg
- 27. 添加/刪除按鈕按下圖像
- 28. 將標籤添加到dojo餅圖
- 29. 將按鈕添加到jtable
- 30. 將按鈕添加到UITableView
我想'.dijitEditorIcon'應該是'.dijitIconNewTask' – g00glen00b
@ g00glen00b如果你想一個複製+粘貼工作的例子,是的。我已經更新了答案 – Sk93