0

このサイトで同様の問題を見つけましたが、特定の問題に対して機能する解決策はないようです。

サイトに iFrame を埋め込んでいます。この iFrame 内には、サード パーティのメール サービスを使用する入力フィールドを含むフォームがあります。このフォームが送信されると、確認メッセージがポップアップ表示されます。

ID が mailingIframe の別の iFrame 内のメイン ページにこのメッセージを表示する必要があります。以下は私が現時点で持っているコードです:

<form action="http://blockdot.us4.list-manage.com/subscribe/post?u=434e0b545d0c86c1ccd5aee9c&amp;id=5a445105c5" method="post" id="mc-embedded-subscribe-form" class="validate" **target="parent.document.getElementById('mailingIframe')"**
4

1 に答える 1

0

You need to replace your form action with action="javascript:;" and then make a javascript function which is called on the onclick event of your submit button. This function will basically do the validation and the data submission and its return will be to put your validation/procedure message to the contents of your "mailingIframe" area, like $("#mailingIframe").html('YOUR MESSAGE!');

于 2012-04-13T20:00:29.453 に答える