我在我的网站上使用“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')";
我希望在添加附加数据之前让标记部分正常工作,查询发布时没有错误,但是在数据库中插入空数据。
任何人都可以提供有关使用我上面发布的post方法成功将标记内容插入数据库的建议,甚至是关于如何安装的可能的教程网站链接?我找不到任何东西,谢谢。
答案 0 :(得分:0)
在您的代码中,您没有为$tag
变量分配任何值。它是空的。
要将表单输入分配给$tag
,您需要这样的内容:
$tag = $_POST['tag'];
希望这有帮助!
答案 1 :(得分: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>