HTML+;Javascript数据库小型网站

HTML+;Javascript数据库小型网站,javascript,jquery,html,air,adobe,Javascript,Jquery,Html,Air,Adobe,我正在尝试创建一个AdobeAIR应用程序,或者使用新的AdobeDreamweaver5.5移动应用程序制作基本的移动应用程序,该应用程序连接到我的在线服务器以获取内容。 我从来没有用HTML+Javascript来创建数据库“产品” IE:一本通讯录 [[ Show list of contacts ]] <a href="details.php?contactId=123">John Doe</a> <<-- This would then take

我正在尝试创建一个AdobeAIR应用程序,或者使用新的AdobeDreamweaver5.5移动应用程序制作基本的移动应用程序,该应用程序连接到我的在线服务器以获取内容。 我从来没有用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
[[显示联系人列表]]
<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>
<a href="#" class="myLink">John Doe</a>
$('.myLink').live('click', function() {
    // ajax stuff
});