私はモーダルでAPI表示のexternフォームを持っています。私はそれが提出されたときにモーダルを閉じたいです。私はAPIから形式を変更することはできませんexternから要素IDを取得するJavascript
私のモーダル
<div id="modal">
<div class="modalconent">
<div class="pipedriveWebForms" data-pd-webforms="https://pipedrivewebforms.com/form/f5cd01e9418f0b683195eb0e821770181945719">
</div>
<button id="button">Close</button>
</div>
</div>
マイスクリプト
<script type="text/javascript">
window.onload = function() {
document.getElementById(submitButtonLoading).onclick = function() {
document.getElementById('modal').style.display = "none"
};
};
</script>
<script src="https://pipedrivewebforms.com/webforms.min.js"></script>
。 Webブラウザでそれを調べると、サブミットボタンのIDはsubmitButton
です。しかし、私の関数は、このIDで動作しません。私はAPIスクリプトを使って私のモーダル作業をする方法を知らない。
が 'submitButtonLoading'が定義されていますか? – Milk