我正在从 C# 向 JavaScript 函数字符串发送"11-2-2013",并期望在 JavaScript 函数中使用该字符串,但我正在选通 11 - 2 - 2013 = -2004。
C#代码:
string id = 11 + '-' + 2 + '-' + 2013;
textBoxBO.Attributes.Add("onblur", "TextBoxReset(this," + id + ")");
JavaScript 代码:
function TextBoxReset(txt, ID) {
if (txt.value > 0) {
var textBoxRR = document.getElementById("ContentPlaceHolder1_txtRR" + ID);
textBoxRR.value = 0;
}
}
如何告诉 JavaScript 不要从该字符串中减去元素。