HTML + Javascript 数据库小型网站

发布于 2024-11-25 17:11:56 字数 1131 浏览 0 评论 0原文

我正在尝试创建一个 Adob​​e Air 应用程序,或者使用新的 Adob​​e 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好听的两个字的网名 2024-12-02 17:11:56
<a href="#" class="myLink">John Doe</a>

$('.myLink').live('click', function() {
    // ajax stuff
});
<a href="#" class="myLink">John Doe</a>

and

$('.myLink').live('click', function() {
    // ajax stuff
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文