2011-07-23 42 views
0

我正嘗試創建一個Adobe Air應用程序,或者使用新的Adobe Dreamweaver 5.5 for mobile Apps創建基本移動應用程序,該應用程序連接到我的服務器以在線抓取內容。 我從來沒有創建一個數據庫'產品'只使用HTML + Javascript顯示。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> 

因此,這將顯示我的網頁... 上的內容,但我怎麼了2個頁面鏈接在一起......如在地址簿中?

<a href="details.html">John Doe</a> 

任何幫助,將不勝感激....

回答

0
<a href="#" class="myLink">John Doe</a> 

$('.myLink').live('click', function() { 
    // ajax stuff 
});