打開一個彈出或提示的onclick鏈接的我到處以下教程各地的網絡要弄清楚這是我新的道場,我知道的jQuery但道場,沒辦法在道場
我下面從計算器鏈接本身,而是無法tofigure出代碼:
http://stackoverflow.com/questions/18476084/dojo-and-javascript-lightweight-tooltip-in-onclick-on-anchor-tab
我試着擰了一些代碼,但它是說作爲
的ShowDialog是不確定的..
而且,什麼是要求是:
點擊鏈接,只是鏈接後,打開的對話框或提示,在它附近positionsing。
具有彈出或關閉它提示裏面的鏈接,所以它實際上應該關閉toltip或彈出,
這裏是我的嘗試到現在:
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.6/dojo/dojo.js"></script>
<script>
dojo.require("dijit.Dialog");
dojo.addOnLoad(showDialog);
elliotDialog = new dijit.Dialog({
title: "My Dialog",
content: "test content",
style: "width: 450px"
});
showDialog = function(){
// set the content of the dialog:
elliotDialog.set("title");
elliotDialog.set("content");
elliotDialog.show();
};
</script>
<a href="javascript:void(0);" onclick="showDialog();" class="moreLink">More pricing...</a></p>
<div dojoType="dijit.Dialog" id="elliotDialog" title="More Pricing Option">
</div>