0

我有这样的代码:

$("input[id="+id.slice(0,-1)+"-br-"+brand+"].qnt_to_cart").show();

这产生了我:

input[id=02620-br-FEBI BILSTEIN].qnt_to_cart 

但我需要看到类似的东西:

input[id="02620-br-FEBI BILSTEIN"].qnt_to_cart 

那我需要写什么?如何在报价中设置报价?

更新

为什么我仍然看到:

Uncaught Error: Syntax error, unrecognized expression: input[id=02620-br-FEBI BILSTEIN].to-cart 
4

3 回答 3

6

用于\"转义引号:

$("input[id=\""+id.slice(0,-1)+"-br-"+brand+"\"].qnt_to_cart").show();
于 2013-01-30T17:49:27.537 回答
2

$('input[id="'+id.slice(0,-1)+'-br-'+brand+'"].qnt_to_cart').show();

于 2013-01-30T17:50:05.513 回答
1

您在 JavaScript 中有几个选项,您可以将它们包含在'而不是"

$('input[id="'+id.slice(0,-1)+'-br-'+brand+'"].qnt_to_cart').show();

或者您可以通过以下方式转义引号\"

$("input[id=\""+id.slice(0,-1)+"-br-"+brand+"\"].qnt_to_cart").show();
于 2013-01-30T17:50:52.580 回答