有没有人有在Intraweb中做jQuery通知/弹出/日历的示例?
一个简单的例子就很棒了..
更好的是...dojo版本会更好。
发布于 2010-03-28 05:00:33
在Intraweb新闻组中,我发布了一个在Intraweb中使用jQuery的非常基本的示例。
参见atozedsoftware.intraweb.attachments (在nntp://news.atozed.com上)。线程“AndréAigneren的JQuery示例项目”,日期为2009年11月23日。用D2010和IW 10编写。它使用datepicker控件。
这个例子基于这个博客:http://www.hadihariri.com/Blogs/Delphi/20080117.aspx。
Gert
发布于 2012-05-25 18:45:35
访问CGDevTools他们有一个jQuery组件套件可以和Intraweb一起使用,也许他们有你需要的东西。
发布于 2010-03-18 15:59:34
这是一条弹出消息
http://jsbin.com/otinu3/edit
如果您在使用jsbin (测试这些东西的很好的沙箱)时遇到困难,可以使用以下标记:
<!DOCTYPE html>
<html>
<head>
<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"></link>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<meta charset=utf-8 />
<title>Popup example</title>
</head>
<body>
<div id="popupMessage">This is the popup message</div>
</body>
</html>JavaScript很简单,就像这样
$('#popupMessage').dialog({title:'Here we go'});https://stackoverflow.com/questions/2467424
复制相似问题