在我的 jsp 中转义撇号

发布于 2024-11-03 18:40:09 字数 508 浏览 0 评论 0原文

你好,我的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月打碎记忆 2024-11-10 18:40:09

@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);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文