0

我在我的网站上使用“tagit”代码,看起来像这样..

<script src="http://webspirited.com/tagit/demo/js/jquery.1.7.2.min.js"></script>
<script src="http://webspirited.com/tagit/demo/js/jquery-ui.1.8.20.min.js"></script>
<script src="http://webspirited.com/tagit/js/tagit.js"></script>
<link rel="stylesheet" type="text/css" href="http://webspirited.com/tagit/demo/css/jquery-ui-base-1.8.20.css">
<link rel="stylesheet" type="text/css" href="http://webspirited.com/tagit/css/tagit-awesome-blue.css">
<script type="text/javascript">
   $(function () {
    $('#topic').tagit({triggerKeys:['enter', 'comma', 'tab'], select:true});     

    $('#otopictags').click(function () {
        showTags($('#topic').tagit('tags'))
    });
        $('input[type=submit]').click(function(){
    tag = $('#topic').tagit('tags');
    console.log(tag);
    for (var i in tag)
      $('form').append("<input type='hidden' name='tags[]' value='"+tag[i].value+"' >");

  });
    function showTags(tags) {
        console.log(tags);
        var string = "Tags (label : value)\r\n";
        string += "--------\r\n";
        for (var i in tags)
            string += tags[i].label + " : " + tags[i].value + "\r\n";
        alert(string);
    }
});

<form method="post" action="add_topic.php">
<ul id="topic" name="tag"></ul>

Add_topic.php 看起来像

$tag = $tag;

$sql = "INSERT INTO tags (tag) VALUES('$tag')";

我想在添加附加数据之前让标签部分工作,查询发布时没有错误,但在数据库中插入了空数据。

谁能提供有关使用我上面发布的发布方法将标签内容成功插入数据库的建议,甚至可以提供有关如何安装的教程站点链接?我在上面找不到任何东西,谢谢。

4

2 回答 2

0

在您的代码中,您没有为$tag变量分配任何值。它是空的。

要将表单输入分配给$tag,您需要以下内容:

$tag = $_POST['tag'];

希望这可以帮助!

于 2013-07-21T07:12:12.367 回答
0

<ul id="topic" name="tag"></ul>不会在表单后提交,它应该是任何输入类型。

<?php
var_dump($_POST);
?>
<html>

<body>
    <form method="post" action="">
    <input type="hidden" id="topic" name="tag" value="rajeev"/>
</form>
    </body>
</html>
于 2013-07-21T07:18:50.930 回答