0

我正在从 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 不要从该字符串中减去元素。

4

1 回答 1

6

您必须将日期放在引号中:

textBoxBO.Attributes.Add("onblur", "TextBoxReset(this,\"" + id  + "\")");

如果你不把它放在引号中,它将被渲染为TextBoxReset(this, 11-2-2013),这将导致-2004.

于 2013-02-11T10:11:45.323 回答