我正在使用此js,因为我需要根据用户是否选择一个字段不同来感谢您。
document.addEventListener( 'wpcf7:mailsent', function( event ) {
if ( '116' == event.detail.contactFormId ) {
var selection = document.getElementById("selection").value;
if (selection == "Problema") {
location = '/contacto-gracias-producto/';
} else if (selection == "Propuesta") {
location = '/contacto-gracias-colaboracion/';
}
else if (selection == "Sugerencia") {
location = '/contacto-gracias-sugerencia/';
}
else if (selection == "Consulta") {
location = '/contacto-gracias-consulta/';
}
}
}, false )
但是问题是:当我单击“提交”时,显示一条消息“请标记必填字段”,但会自动重定向到页面,谢谢。
如果用户不标记必填字段,则不应进行重定向。
有解决方案吗?
如果所有必填字段均已标记,我需要一个条件。
谢谢