概述: 我将一个字符串传递给我的javascript函数,这里是代码:
HTML:
<span onclick='fSaveComment(/@item.model.szUserName/)'></span>
使用Javascript:
function fSaveComment(szUserName) {
// If I assign the following line, it strips the first and last characters,
// if I use szUserName from the function param list, it does not work!!!
//
//szUserName = '/aabbcc/';
myString = szUserName.substr(1, szUserName.length-2);
}
我做错了什么?
答案 0 :(得分:1)
您需要正确引用传递给fSaveComment函数的用户名
<span onclick='fSaveComment("@item.model.szUserName")'></span>