在我的 jsp 中转义撇号
你好,我的jsp中有这段代码
<a href="#"onclick="supprimerProduit('<bean:write name="gererProduitsForm" property="type_produit.nomProduit"/>','supprimerProduit','',<bean:write name="gererProduitsForm" property="type_produit.idProduit"/>)"></a>
,所以我有一个javascript错误,例如
托玛的
在我的变量中
<bean:write name="gererProduitsForm" property="type_produit.nomProduit"/>
我该怎么做才能逃脱撇号..? 谢谢
Hello i have this code in my jsp
<a href="#"onclick="supprimerProduit('<bean:write name="gererProduitsForm" property="type_produit.nomProduit"/>','supprimerProduit','',<bean:write name="gererProduitsForm" property="type_produit.idProduit"/>)"></a>
So i have an javascript error when i have for example
Thoma's
in my var
<bean:write name="gererProduitsForm" property="type_produit.nomProduit"/>
How can i do for escape the apostrophe..?
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@brandizzi:这个主题与您链接到的另一个主题不同。在数据库插入/更新上转义撇号,或在数据库选择上剥离撇号是一匹不同颜色的马。在 url 字符串中转义撇号,就像原始帖子中的示例一样,是一个完全不同的问题。
对于 Mercer,这是我对在 url 字符串中转义撇号的建议:将 ' 替换为 %27
执行此操作的 javascript 方法如下:
my_title = "Who's to say we are not all a梦?”;
my_title = my_title.replace("'", "%27");
PHP 方法是:
$my_title = "谁说我们不是梦想?";
$my_title = str_replace("'","%27",my_title);
@brandizzi: This subject is different from the other one you linked to. Escaping an apostrophe on a db insert/update, or stripping an apostrophe on db select is a horse of a different color. Escaping an apostrophe in a url string, like the example in the original post here is a whole different kettle of wax.
To Mercer, this is my recommendation for escaping the apostrophe in a url string: Replace ' with %27
The javascript way to do it is like this:
my_title = "Who's to say we aren't all a dream?";
my_title = my_title.replace("'", "%27");
The PHP way to do it is:
$my_title = "Who's to say we aren't all a dream?";
$my_title = str_replace("'","%27",my_title);