如何在javascript函数中传递Xpath值

发布于 2024-10-29 12:03:15 字数 134 浏览 0 评论 0原文

这是我的代码,给出了错误-

OnClientClick='javascript:DragRevId(<%# XPath("ReservationId") %>);return false;'

here my code that gives error-

OnClientClick='javascript:DragRevId(<%# XPath("ReservationId") %>);return false;'

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

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

发布评论

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

评论(1

梦在深巷 2024-11-05 12:03:15

这可能与 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.

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