我有一张表格
<form method="POST" action="qwerty.php" />
<input type="text" name="merchant" />
<input type="text" name="password" />
<input type="submit" value="go" />
</form>
我想要做的是将这些值发布到这个php中并获得结果或在模态窗口中自我响应。这可能吗?有什么帮助吗?
答案 0 :(得分:0)
编辑:
使用Ajax和jquery可以实现这样:
var merchant = $('form input:nth-child(1)').val();
var password= $('form input:nth-child(2)').val();
$('form input[type="submit"]').click(function() {
$.post( "qwerty.php", { merchant: merchant, password: password }, function(data) {
// #extraDiv is a div with display:none that will serve as a wrapper for the data
$('#extraDiv').html(data).colorbox();
});
});
然后在qwerty.php中获取你发送的值:
$merchant = $_POST['merchant'];
$password= $_POST['password'];
我对colorbox不太熟悉,但上面的内容可能有用。