在按钮上单击。我希望页面使用单独的脚本重定向到laravel路由网址。
下面是我的代码:
<button id="myButton">Home</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "{{ route('customer.wishlist.remove',$item->id) }}";
};
点击它,直接在浏览器标签中显示路线链接。
请帮助我,我哪里出错了。 谢谢。
答案 0 :(得分:1)
尝试一下
<button id="myButton">Home</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
window.location.href = "{{ route('customer.wishlist.remove',$item->id) }}";
};
答案 1 :(得分:1)
传递CSRF令牌并在代码中写入window.location.href
<button id="myButton">Home</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
window.location.href = "{{ route('customer.wishlist.remove',$item->id) }}";
};
或
<a href="{{ url('/path/' . $item->id . '/path(edit like)') }}" class="btn btn-xs btn-info pull-right">BUttonn naame</a>