dojo简单Dialog示例

前端之家收集整理的这篇文章主要介绍了dojo简单Dialog示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>dojofirst.htm</title>

<Meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<Meta http-equiv="description" content="this is my page">
<Meta http-equiv="content-type" content="text/html; charset=UTF-8">

<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
@import "dojoroot/dijit/themes/nihilo/nihilo.css";
@import "dojoroot/dojo/resources/dojo.css"
</style>
<style type="text/css">
html,body{
margin:0px;
font-size: 12px;
}
</style>
<script type="text/javascript" src="dojoroot/dojo/dojo.js" djConfig="parSEOnLoad: true,isDebug: false"></script>
<script type="text/javascript">
dojo.require("dijit.form.Button");
dojo.require("dijit.Dialog");
dojo.require("dojo.parser");
</script>
</head>

<body class="nihilo">
<button dojoType="dijit.form.Button" id="loginbtn">DialogDemo
<script type="dojo/method" event="onClick">
dijit.byId('loginDialog').show();
</script>
</button>

<div dojoType="dijit.Dialog" id="loginDialog" title="DialogDemo" onClose="alert('yyyy');">在这里输入HTML在这里输入HTML在这里输入HTML在这里输入HTML<br>在这里输入HTML在这里输入HTML在这里输入HTML在这里输入HTML<br>在这里输入HTML在这里输入HTML在这里输入HTML在这里输入HTML<br></div></body></html>

原文链接:https://www.f2er.com/dojo/291832.html

猜你在找的Dojo相关文章