我在模板中有一个 symfony 表单:
模板.php
<form class="well" action="<?php echo url_for("@submitParam?param=".$con) ?>" method="post">
<input type="text" name="param">
<button type="submit" class="thisBtn">Button</button>
</form>
当按下提交按钮时,如何将值从 HTML 输入name="param"
传递到 url 或$con
使用jquery、javascript或任何其他方式(symfony或php )的变量?
更新: 您也可以使用 AJAX:
$(".btn").live('click', function(){
$.post("<?php echo url_for('@submitParam'); ?>", $('.box').serialize(), function(response) {
switch(response.status) {
case 'success':
console.log("Success");
break;
case 'failure':
console.log("Failure");
break;
}
}, 'json');
return false;
});
行动 :
$request->getParameter('param');