如何在javascript函数中传递Xpath值
这是我的代码,给出了错误-
OnClientClick='javascript:DragRevId(<%# XPath("ReservationId") %>);return false;'
here my code that gives error-
OnClientClick='javascript:DragRevId(<%# XPath("ReservationId") %>);return false;'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能与 XPath 使用“\”字符有关。如果您想在 javascript 中使用该字符,则需要对该字符进行转义。
例子:
节点\子节点 --> Node\\Child
因此,在 ASP 中,执行 String.Replace('\', "\\");或类似的东西。
如果这不起作用,您可能需要考虑发布引发的错误,并指定它是 ASP.Net 错误还是 Javascript 错误。
It probably has something to do with the fact that XPath's use the '\' character. You'll need to escape that character if you want to use it with javascript.
Example:
Node\Child --> Node\\Child
So, within ASP, do a String.Replace('\', "\\"); or something similar.
If this doesn't work you might want to consider posting the error that is thrown, and specifying if it is an ASP.Net error or a Javascript error.