admin管理员组文章数量:1345007
here, this code inside laravel controller
this code define from controller and use to javascript
<script type="text/javascript">alert("hello!");</script>
it will occure error
Unexpected token < in JSON at position 0
here, this code inside laravel controller
this code define from controller and use to javascript
<script type="text/javascript">alert("hello!");</script>
it will occure error
Unexpected token < in JSON at position 0
Share Improve this question edited Jan 24, 2018 at 3:41 Dharmik Unagar asked Jan 23, 2018 at 13:35 Dharmik UnagarDharmik Unagar 581 gold badge2 silver badges8 bronze badges 7- more explanation. more code. a real question. I think this will be closed soon – messerbill Commented Jan 23, 2018 at 13:36
-
Looks like you're just testing how Laravel and JS work. Put this code into the Blade view you're executing. If you've just installed Laravel, put this to
resources/view/wele.blade.php
– Alexey Mezenin Commented Jan 23, 2018 at 13:37 - simple this javascript alert in laravel controller echo '<script type="text/javascript">alert("hello!");</script>'; – Dharmik Unagar Commented Jan 23, 2018 at 13:37
- To print HTML on a blade template simply put inside here {!! your_html !!} – Iker Vázquez Commented Jan 23, 2018 at 13:38
-
simple this javascript alert in laravel controller
- Laravel isPHP
and executed on the server side. This is part of a template – messerbill Commented Jan 23, 2018 at 13:39
2 Answers
Reset to default 5Try:
echo "<script>";
echo "alert('hello');";
echo "</script>";
Or try this:
return redirect()->back()->with('alert','hello');
@push('stylesheets')
<link rel="stylesheet" href="custom/css/required/by/child">
@endpush
@push('scripts')
<script src="custom/js/required/by/child"></script>
@endpush
本文标签: How to Write Javascript Alert from Laravel ControllerStack Overflow
版权声明:本文标题:How to Write Javascript Alert from Laravel Controller? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743791644a2539679.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论