您好我有我的html.Basically多個元素在所有的我有一個名爲ConsentFormId隱變量使用引導carousel.And:如何使用JQuery訪問隱藏字段?
<div class="item" id="386">
<form id="frmConsentForm+386" method="post" data-url="/PP/818003/PatientForms/SaveSignature">
<input name="ConsentFormId" id="ConsentFormId" type="hidden" value="386" data-val-required="The ConsentFormId field is required." data-val="true" data-val-number="The field ConsentFormId must be a number.">
</form>
</div>
<div class="item active" id="387">
<form id="frmConsentForm+387" method="post" data-url="/PP/818003/PatientForms/SaveSignature">
<input name="ConsentFormId" id="ConsentFormId" type="hidden" value="387" data-val-required="The ConsentFormId field is required." data-val="true" data-val-number="The field ConsentFormId must be a number.">
</form>
</div>
現在我需要訪問的「活躍ConsentFormId隱藏字段變量「form.For,我能夠通過獲取活動形式:
var $activeForm = $('.active form');
現在我需要訪問活動形式,這是387 的ConsentFormId價值,我相信這是一個非常簡單的把戲,只是那是沒有得到正確的語法,我一直在嘗試很多事情,迄今都沒有工作。 在此先感謝!
您在這兩種表單中都有相同的ID。嘗試改變它,我認爲你不會有問題 –
'var cfId = $ activeForm.find('input [name =「ConsentFormId」]')。val()' - 元素的ID在文檔中必須是唯一的。 ..在你的情況下,使用輸入 –
的名稱,你可以通過$('。active form #ConsentFormId')。val(); –