如何将带有引号(“)的数据传递到 jQuery 中的对话框
假设我有以下代码:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要转义您的引号或将其从DOM中取出(我推荐)在上面放置一个监听器:
You need to escape your quotes or take it out of the DOM (which I recommend) by putting a listener on it:
您必须转义您的数据值,例如 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 :)不内联 JavaScript 怎么样?
模板
JavaScript
What about not in-lining JavaScript?
Template
<html:link id="add_name_open_dialog" rel="${name}" href="#">
JavaScript