HTML + Javascript 数据库小型网站
我正在尝试创建一个 Adobe Air 应用程序,或者使用新的 Adobe Dreamweaver 5.5 for mobile Apps 制作基本的移动应用程序,该应用程序在线连接到我的服务器以获取内容。 我从未创建过仅使用 HTML + Javascript 来显示的数据库“产品”。
IE:地址簿。
[[ Show list of contacts ]]
<a href="details.php?contactId=123">John Doe</a> <<-- This would then take you to the contact details
但使用 HTML + JS,您无法真正复制该过程。
我目前有这样的设置来从服务器提取数据。
<script type="text/javascript">
$(document).ready(function(e) {
$.ajax({
url: 'http://www.domain.ca/classes/brain.php?a=select',
crossDomain: true,
type: 'GET',
dataType: 'json',
success: function(data, textStatus, jqXHR) {
$("#taskList").empty();
$("#tasksTemplate").tmpl(data).appendTo("#taskList");
},
error: function(responseText) {
alert('Error: '+ responseText.toString());
}
});
});
</script>
所以这将在页面上显示我的内容...... 但是如何将两个页面链接在一起......例如在地址簿中?
<a href="details.html">John Doe</a>
任何帮助将不胜感激......
I am trying to create an Adobe Air Application, or making basic Mobile Apps with the new Adobe Dreamweaver 5.5 for mobile Apps, that connects to my server online to grab content.
I have never created a database 'product' using just HTML + Javascript to display.
IE: An Address Book.
[[ Show list of contacts ]]
<a href="details.php?contactId=123">John Doe</a> <<-- This would then take you to the contact details
But with HTML + JS you can't really replicate that process.
I currently have this setup to pull data from the server.
<script type="text/javascript">
$(document).ready(function(e) {
$.ajax({
url: 'http://www.domain.ca/classes/brain.php?a=select',
crossDomain: true,
type: 'GET',
dataType: 'json',
success: function(data, textStatus, jqXHR) {
$("#taskList").empty();
$("#tasksTemplate").tmpl(data).appendTo("#taskList");
},
error: function(responseText) {
alert('Error: '+ responseText.toString());
}
});
});
</script>
So this will display my content on the page...
BUT how do I link the 2 pages together... such as in the address book?
<a href="details.html">John Doe</a>
Any help would be appreciated....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
和
and