JQuery / PHP中的电子邮件表单问题

时间:2017-03-22 12:37:33

标签: php jquery ajax

我仍在使用JQuery,我在这里尝试做的是向网站上的所有用户发送消息,我正在尝试使用更多的JQuery / Ajax,到目前为止代码:

质email.php

CES <- function(g, a=a, e=e) exp(e)*(a*l^g+(1-a)*k^g)^(1/g)
y <- lapply(g, CES) # now works

Ajax的emails.php

CES <- function(g) exp(e)*(a*l^g+(1-a)*k^g)^(1/g)
y <- lapply(g, CES) # now works

这是我到目前为止所做的,我可以很好地发布消息的价值,我似乎无法将值传递给PHP文件,任何有关我出错的帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我认为这就是你想要的。 $('#insert-text').load('ajax-emails.php');无法做任何事情。

<script>
$('#frmAjax').submit(function(e) {
    e.preventDefault(); // important so the submit doesn't clear the data...
    var txtAreaValue = document.getElementsByTagName("textarea")[0].value;
    $.post('ajax-emails.php', {txtAreaValue:txtAreaValue}, function (data) {
       $('#insert-text').html(data);
    });
});
</script>