Здесь я хочу показать сообщение validation_error через tostr, чтобы я сделал свой код следующим образом
<script type="text/javascript">
toastr.options = {
"closeButton": true,
//"allowHtml": true,
"debug": false,
"newestOnTop": false,
"progressBar": false,
"positionClass": "toast-bottom-right",
"preventDuplicates": false,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"}
</script><?php
if (!empty($message)) {?>
<script>
toastr.error('<?php echo $message;?>', 'Inconceivable!', {timeOut: 5000})
</script>
<?php }?>
Мое $ сообщение содержит такую строку
'<p>The New Password field does not match the Confirm New Password field.</p>'
Пожалуйста, помогите мне решить.
Задача ещё не решена.
Других решений пока нет …