JS函数传递字符串参数(符号转义)
Posted yxmhl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS函数传递字符串参数(符号转义)相关的知识,希望对你有一定的参考价值。
原文链接:https://blog.csdn.net/Myname_China/article/details/82907965
JS函数传递字符串参数,如果没有转义处理,在接收的时候无法正确的接收字符串。
在双引号内
<a href="javascript:orderDetails(\''+orderId+'\')">查看详情</a>
<a href="javascript:void(0)" onclick="orderDetails(\''+orderId+'\')">查看详情</a>
在单引号内
<a href='javascript:orderDetails(\""+orderId+"\",\""+orderName+"\")'>查看详情</a>
<a href='javascript:void(0)' onclick='orderDetails(\""+orderId+"\",\""+orderName+"\")'>查看详情</a>
如果参数为int类型,则不需要加引号和转义
以上是关于JS函数传递字符串参数(符号转义)的主要内容,如果未能解决你的问题,请参考以下文章