我正在尝试根据标签的当前内容替换一系列“for”标签属性。
该应用程序正在使用 AJAX 将项目添加到发票而不刷新页面。在收到成功添加项目的通知后,我的脚本应该替换表单中所有标签,其“for”属性以“-new”结尾,相同的属性减去“-new”并添加(“-”+ itemValue),其中 itemValue 是添加的发票项目的项目 ID。
我知道如何一次选择要更改的所有标签:
jQuery('label[for$=new]')
我知道如何获得他们的“for”属性:
jQuery('label[for$=new]').attr('for')
我尝试了 JavaScript 替换方法:
jQuery('label[for$=new]').attr('for').replace(/-new/,itemValue)
但这似乎选择了每个标签的“for”属性,替换文本,并将替换的文本传回(什么都没有),因为我不知道如何识别具有我想要替换的“for”属性的标签。
这是一些示例 HTML:
<form id="InvoiceItemsForm-1" action="<?=$_SERVER['PHP_SELF'];?>" method="post" name="InvoiceItemsForm-1" onsubmit="return false">
<div id="InvoiceItem-new-1" class="InvoiceItem">
<label for="InvoiceItemNumber-new">New Invoice Item Number: </label>
<input id="InvoiceItemNumber-new" class="InvoiceItemNumber" type="text" value="" name="InvoiceItemNumber-new">
<label for="InvoiceItemDescription-new">Item Description: </label>
<input id="InvoiceItemDescription-new" class="InvoiceItemDescription" type="text" value="" name="InvoiceItemDescription-new">
<label for="InvoiceItemAmount-new">Item Amount: </label>
<input id="InvoiceItemAmount-new" class="InvoiceItemAmount" type="text" value="" name="InvoiceItemAmount-new">
<input id="addInvoiceItem-1" width="25" type="image" height="25" src="/payapp/images/greenplus.th.png" alt="Add New Invoice Item" onclick="addInvoiceItemButtonPushed(this)" value="invoiceItem">
</div>
<button id="CloseInvoice-1" onclick="closeInvoice(this)" type="button">Close Invoice</button>
</form>
一旦我让它工作,我将替换所有输入的所有 id。同样的问题。我想解决方案看起来像这样:
jQuery('input[id$=new]').attr('id').replace(/-new/,itemValue)
我根本无法弄清楚它的语法。