如何将动态生成的元素保存到数据库中?

时间:2011-03-15 22:39:25

标签: javascript jquery database

假设您使用Embedly API并在application.js文件中进行调用:

$('a.oembed').embedly({maxWidth:300,'method':'replace'}).bind('embedly-oembed', function(e, oembed){ 
           alert(oembed.title);
});

现在您拥有哈希oembed,并且可以在回调函数中调用ombed.thumbnail_urloembed.title。我想知道如何将回调函数中的其中一个元素保存到数据库中。

jQuery代码看起来像这样:

$.ajax({
   type: "POST",
   data: { title: 'oembed.title', thumbnail_url: 'oembed.thumbnail_url'}
});

1 个答案:

答案 0 :(得分:0)

看起来您只需要使用AJAX将标题和thumbnail_url发布回您的应用程序 - http://en.wikipedia.org/wiki/Ajax_(programming)。

jQuery ajax api非常简单 - http://api.jquery.com/jQuery.ajax/