多个参数onclick事件

时间:2018-08-10 01:44:09

标签: javascript laravel-5.6

通过onclick事件传递多个参数时,我的代码出现语法错误。当达到三个参数时,我得到了错误。我的代码与本地主机没有问题,并且按预期工作。感谢您的帮助。

这里是我的代码:

onclick="editPost({{$post->id}},'{{$post->title}}','{{$post->description}}','{{$post->shortDesc}}','{{$post->caption}}','{{$post->author}}')"

1 个答案:

答案 0 :(得分:1)

我已经重新检查了我的数据,并注意到我也有新行。因此,为了避免换行和退出,我使用了以下代码:

'{{ preg_replace( '/\r|\n/', '', addslashes($yourstring))  }}'

谢谢大家的帮助! :)