如何使用jquery html和php将标签插入数据库

我想将这些特定标签插入数据库。 这是我的HTML:

和jQuery部分:

  counter = 0; $(function(){ $('#tags input').on('focusout',function(){ var txt= $.trim( $(this).val() ).replace(',',''); if(txt){ $(this).before(''+txt+''); counter++; if(counter==5){ $('#tags input').prop('disabled', true); } //$(".bgtopic").append("") //Yet to implement the counter varibale to be visible... } $(this).prop('value',''); }).on('keyup',function( e ){ if(e.which==188){ $(this).focusout(); } }); $('#tags').on('click','.tag',function(){ $(this).remove(); counter--; $('#tags input').prop('disabled', false); }); }); 

当用户在我的论坛上创建新post时,这段代码会创建一个标记,就像它在StackOverflow上的方式一样。 我希望能够存储标签,以便我可以使用它们来创建标签云。 我怎么能做到这一点?

你必须通过jquery做一个ajax请求。

你可以在网上找到很多教程如何做到这一点(例如http://www.ibm.com/developerworks/opensource/library/os-php-jquery-ajax/ )