履歴書を送信すると、PHP は現在の履歴書を電子メールに自動的に送信します
電子メール アドレスがデータベースから取得され、詳細ページで [応募] をクリックすると、電子メール アドレスを動的に転送して求人詳細ページに表示されます。 sendMail に送信しますか? .php ページで渡されたメール アドレスを取得します
ありがとうございます
-----ソリューション アイデア---- ------ ------------
採用詳細ページ:
非表示の iframe に接続
<br /><iframe name="back_interface" id="back_interface" <br /> style="max-width:90%"></iframe><br /><a href="..[email protected]" <br /> target="back_interface" >应聘</a><br />
<br /><!doctype html><br /><html><br /> <head><br /> <meta charset="UTF-8"/><br /> <title>Document</title><br /> <script src="http://static.blog.csdn.net/scripts/jquery.js" type="text/javascript"></script><br /> <script><br /> $(function(){<br /> $("#send").click(function(){<br /> var mailbox=$("#EnterpriseMailbox").html()<br /> $.get("../php_test/sendmail.php", { EnterpriseMailbox: mailbox } ,function(data){<br /> alert("简历已发");<br /> });<br /> });<br /> });<br /></script><br /> </head><br /> <body><br />企业邮局:<div id="EnterpriseMailbox">[email protected]</div><br /><input id="send" type="button" value="应聘" /><br /> </body><br /></html><br />