我正在将外部 php 页面加载到我的用户页面 (user.php) 上的对话框中。外部页面 (contact.php) 包含一个表单。
我想提交表单,然后在对话框中向用户返回一条消息。
当我运行 contact.php 时,表单提交。我无法从 user.php 的对话框中提交它——感谢您的帮助。
这是来自 user.php 的 jquery
$(document).on('click', '#contact_tutor', function(){
$('div#dialog').load("contact.php?id="+uid)
.dialog({
width: 800,
height: 425,
title: "Contact,
});
});
在第一页的 html 中 (user.php)
<div id="contact_tutor" class="contact"><a href="#">Contact <?php echo $name;?></a></div>
<div id="dialog" ></div>
这是来自 Contact.php 的代码
<?php
include_once($_SERVER['DOCUMENT_ROOT']."/MySite/php_includes/check_login_status.php");
if (isset($_POST['posted'])&& isset($_POST['message'])){
//do stuff
?>
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<form id="message" method="POST" action="<?php echo $PHP_SELF;?>" class="contact">
<label>Your Name:</label> <input type="text" name="sender_name" value=""></br>
<label>Email:</label><input type="text" name="sender_email" value=""></br>
<label>Message:</label><textarea class="textbox" cols="53" rows="10" name="message" value=""></textarea>
<input type="hidden" name="posted" value="posted">
<input type="Submit" value="Send Message">
</form>
<div class="statuserror"><?php echo $err?></div>
</body>
</html>