$(input [])。每个在firefox中抛出语法错误

时间:2015-04-07 17:47:16

标签: javascript jquery firefox

我正在开展一个网络项目,我遇到了一个奇怪的问题。

我有一个textarea如下:

<textarea style="margin-bottom: 5px" id="txtSupportDescription" name="txtSupportDescription[]" placeholder="Support Description" rows="10"></textarea>

然后我有以下jquery

var supportComments = [];
$('textarea[name="txtSupportDescription[]"').each(function()
{
    supportComments.push($(this).val());
});

它在Chrome和IE中工作正常,但在Firefox中我收到以下错误:

错误:语法错误,无法识别的表达式:]&#34;但它在jQuery库中抛出错误。

我不明白为什么当Chrome和IE完全没问题时Firefox会遇到这个问题。

1 个答案:

答案 0 :(得分:5)

在最后看起来你错过了一个结束括号“]”。应该是:

$('textarea[name="txtSupportDescription[]"]')