我的HTML格式很短。这是聊天窗口,我想在那里不仅传递用户信息,还传递一些隐藏数据到文件“post.php”,它位于上层文件夹中。
<form name="message" action="">
<input name="usermsg" type="text" id="usermsg" size="63" />
<input name="company" type="hidden" id="company" value="<?php echo $kawalki_adres[2]; ?>"/>
<input name="submitmsg" type="submit" id="submitmsg" value="Send" />
</form>
这是AJAX
<script type="text/javascript">
//If user submits the form
$("#submitmsg").click(function(){
var clientmsg = $("#usermsg").val();
var company = $("#company").val();
$.post("../post.php", {text: clientmsg, company});
$("#usermsg").attr("value", "");
$("#company").attr("value", "");
return false;
});
我正在“post.php”中正确接收用户的消息,但不知道如何接收“公司”变量。
答案 0 :(得分:0)
像这样使用
确保您通过PHP设置公司的价值
/home/path/train_h5_list.txt