jquery 通过带有变量和特定名称的 id 从输入中获取值
jquery get value from input by id with variable and specific name
我需要这个输入字段的值:
var id = $(this).attr("id");
<?php $pl_id=foo;?>
<input type="text" id="<?=$pl_id?>" name="projekt_leistung_anzahl" value="">
这行不通:
$("#'+id'[name=projekt_leistung_anzahl]").val();
解决方案
var wert_projekt_leistung_nettopreis_einzel = $("input[id="+id+"][name='projekt_leistung_nettopreis_einzel']").val();
我需要这个输入字段的值:
var id = $(this).attr("id");
<?php $pl_id=foo;?>
<input type="text" id="<?=$pl_id?>" name="projekt_leistung_anzahl" value="">
这行不通:
$("#'+id'[name=projekt_leistung_anzahl]").val();
解决方案
var wert_projekt_leistung_nettopreis_einzel = $("input[id="+id+"][name='projekt_leistung_nettopreis_einzel']").val();