私に連絡するには、私のViral Loopsアカウントに情報を提出する埋め込みフォームを持っている必要があります。お問い合わせフォーム7:複数のJavaScript on submit
それはどこか、どのようにそれを追加するだけで使用して、コードの1行を持つことができますので、私は、知らないすなわちon_sent_ok:
VL.options.form_fields.form_firstName = $("#firstname").val(); //capture the first name
VL.options.form_fields.form_email = $("#email").val(); //capture the email
VL.options.form_fields.form_lastName = $("#lastname").val(); //capture the last name (if applicable in your form)
//submit the participant to Viral Loops
VL.createLead(function() {
//any logic to run after the participation
});
、フォームが送信されると、次のコードを実行する必要があります高度な設定でokを送信しました。
ありがとうございます!
on_sent_ok: "VL.options.form_fields.form_firstName = $('#firstname').val();VL.options.form_fields.form_email = $('#email').val();VL.options.form_fields.form_lastName = $('#lastname').val();VL.createLead(function() {});"
それともjs/script.js
であなた(子)テーマディレクトリ内のJavaScriptファイルを作成し、functions.php
にこれを追加することができます。:)
これは最も読みやすいわけではありませんが、1行にすべてのjを置くのはなぜですか?セミコロンは、いずれかのステートメントの終わりを区別して処理します。 –
それをあなたがエンキューした外部JSファイル(https://developer.wordpress.org/reference/functions/wp_enqueue_script/)の関数として入れ、on_sent_okから関数を呼び出すことができます – Jonathan