私はPHP関数を持っています:
function output_errors($errors) {
return '<ul><li>' . implode('</li><li>', $errors) . '</li></ul>';
}
しかし、との代わりに<ul>
、<li>
jQueryを使用してエラーを表示したいと思います。
$(function() {
$.pnotify({
title: 'Update Successful!',
text: '<p>Error text here!</p>',
});
});
たくさんの組み合わせを試しましたが、うまくいきません。