如何将带有引号(“)的数据传递到 jQuery 中的对话框

发布于 2024-11-19 17:32:32 字数 278 浏览 0 评论 0原文

假设我有以下代码:

<html:link onclick="jQuery('#add').data('name','${name}').dialog('open');" href="#">

有了这个,如果 ${name} = a"b"c ,就会出现问题,链接渲染得不好。 我试图逃避该值,序列化但也许我的方式是错误的。

有什么建议如何做到这一点?我一直在寻找,但我就是找不到答案。

预先感谢大家。

Supposed I have the following code:

<html:link onclick="jQuery('#add').data('name','${name}').dialog('open');" href="#">

And with this, if ${name} = a"b"c, problem occurs, link was not rendered well.
I have tried to escape the value, serialize but maybe my way is wrong.

Any suggestion how to do this? I have been searching, but i just cant find the answer.

Thanks all in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

葬シ愛 2024-11-26 17:32:32

您需要转义您的引号或将其从DOM中取出(我推荐)在上面放置一个监听器:

$('a').click(function(){
    $('#add').data('name','${name}').dialog('open');
});

You need to escape your quotes or take it out of the DOM (which I recommend) by putting a listener on it:

$('a').click(function(){
    $('#add').data('name','${name}').dialog('open');
});
晨光如昨 2024-11-26 17:32:32

您必须转义您的数据值,例如 html 实体。请参阅此链接了解更多详细信息。

而且,您使用的是 Struts 2 框架吗?只需使用 它就会为您转义。

如果没有,请在 jstl 中使用 ,它会对您有所帮助:)

You must escape your data value, such as html entity. See this link for more details.

And, are you using Struts 2 Framework? Just use <s:property> and it will escape it for you.

If not, use <c:out> in jstl, it will help you :)

余罪 2024-11-26 17:32:32

不内联 JavaScript 怎么样?

模板

JavaScript

jQuery("#add_name_open_dialog").click(function(){
  jQuery('#add').data('name', $(this).attr("rel")).dialog('open');
});

What about not in-lining JavaScript?

Template
<html:link id="add_name_open_dialog" rel="${name}" href="#">

JavaScript

jQuery("#add_name_open_dialog").click(function(){
  jQuery('#add').data('name', $(this).attr("rel")).dialog('open');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文