我想将这些特定标签插入数据库。这是我的HTML:
<div id="tags">
<input type='text' name='tags' placeholder='Type in topic tags here seperated by commas' id="tagg" />
</div>
和jQuery部分:
counter = 0;
$(function(){
$('#tags input').on('focusout',function(){
var txt= $.trim( $(this).val() ).replace(',','');
if(txt){
$(this).before('<span class="tag" name="tags[]" value="'+txt+'">'+txt+'</span>');
counter++;
if(counter==5){
$('#tags input').prop('disabled', true);
}
//$(".bgtopic").append("<input type='hidden' name='tags[]' />")
//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);
});
});
当用户在论坛上创建新帖子时,这段代码会创建一个标记,就像它在StackOverflow上的方式一样。我希望能够存储标签,以便我可以使用它们来创建标签云。我怎么能做到这一点?
答案 0 :(得分:1)
你必须通过jquery做一个ajax请求。
你可以在网上找到很多关于如何做到这一点的教程(例如http://www.ibm.com/developerworks/opensource/library/os-php-jquery-ajax/)