簡體   English   中英

在javascript / jquery中為輸入元素的ID分配變量值

[英]Assigning variable value to id of an input element in javascript/ jquery

我正在嘗試將變量值分配給動態創建的輸入元素。 但是我不能。 輸入元素已創建,但沒有ID。

        $(document).ready(function(){

// Declaring global variables   

    var cnt = 1;
    var fooId = "foo";
    var cnt1 ='aaaa';


// Code for Changing the datalist for second input testingphase when ever first input Tasks has been changed.


        $("#tasks" + cnt).change(function () {
        $("#activitytype" + cnt).replaceWith('<input id="activitytype" + ctn value="asasa" name="ActivityType" placeholder="ActivityType" >');

        if (bla1 == 'Service Request') {
            $("#testingphase" + cnt).replaceWith('<input id="testingphase" + ctn list="Service Request" name="Tasks" placeholder="Tasks2">');
        //  changingactivity ();


             }

您必須稍微更改replaceWith方法,以包含不帶引號的變量。 更改:

 $("#activitytype" + cnt).replaceWith('<input id="activitytype" + ctn value="asasa" name="ActivityType" placeholder="ActivityType" >');

像這樣:

 $("#activitytype" + cnt).replaceWith('<input id="activitytype' + ctn + '" value="asasa" name="ActivityType" placeholder="ActivityType" >');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM