标签:cli s函数 类型 需要 onclick 字符 oid blog uri
原文链接: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类型,则不需要加引号和转义
标签:cli s函数 类型 需要 onclick 字符 oid blog uri
原文地址:https://www.cnblogs.com/yxmhl/p/11622534.html