本文介绍了字面上的字符过多的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我在下面的javascript语句中得到错误太多的字符



''+'<%:Html.ActionLink('+ lstItems [ind] +',ReDirectToDetails,ECU,new {ECSiD ='+ lstItems [ind] +'})%> ;; '+''+



请帮我这个。



我试过的:



我在下面的javascript语句中得到错误太多的字符



''+'<%:Html.ActionLink('+ lstItems [ind] +',ReDirectToDetails,ECU,new {ECSiD ='+ lstItems [ind] +'})%> ;; '+''+



请帮帮我。

Hi,

I am getting the error too many characters in literal in the below statement of javascript

'' + '<%: Html.ActionLink(' + lstItems[ind] + ',"ReDirectToDetails", "ECU", new {ECSiD = ' + lstItems[ind] + '}) %>;' + '' +

Please help me on this.

What I have tried:

I am getting the error too many characters in literal in the below statement of javascript

'' + '<%: Html.ActionLink(' + lstItems[ind] + ',"ReDirectToDetails", "ECU", new {ECSiD = ' + lstItems[ind] + '}) %>;' + '' +

Please help me on this.

推荐答案


这篇关于字面上的字符过多的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 14:01