Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用带有 ajax 绑定的 Telerik 网格,我需要将字符串(带空格)参数发送到 java 函数,例如:
n.Bound(c => c.Item).ClientTemplate("<button onclick=AddToInvoice('<#=ItemName#>');>Add </button>").Title("");
当我发送没有空格的字符串时没问题,但是当我发送空格时,例如“Hello world”,我收到错误未终止的字符串文字,请帮助?
我认为你应该使用一些东西而不是空间,当你的 Java 函数接收到参数时,你可以解析它,你就可以把你的空间放回去。