私はこの2つのフィールドを持っています:
<input type="text" name="smsText" value="text sms to send to all">
<input type="text" name="recipients[]" value="3471234567">
<input type="text" name="recipients[]" value="3359876543">
<input type="text" name="recipients[]" value="3201472583">
そして、ajax 呼び出しで php ページに送信する必要があります。
多くのスクリプトで使用するこの関数があります
$("#sendSms").click(function(){
var text = $("input[name=smsText]").val();
var recipients = $("input[name=recipients]").val();
var datastr ='text=' + text +'&recipients=' + recipients;
$(over).appendTo('#box');
$.ajax({
type: "POST",
url: "send-result.php",
data: datastr,
cache: false,
success: function(data){
$('#box').html(data);
}
});
return false;
});
「smsText」と配列の両方の受信者[]をAjax経由で他のphpページに送信するように関数を変更するには、助けが必要です...
どうもありがとうございました!