Home > Article > Backend Development > php 在递送简历时向邮箱自动发送一份当前简历
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 />