-1
我想要刪除名稱值以「List」加上一個變量開頭的所有輸入字段。我已經嘗試過如下但目前沒有喜悅。按名稱刪除所有輸入字段索引
$('input[name^=List[' + index + '].LastName]').remove();
我想要刪除名稱值以「List」加上一個變量開頭的所有輸入字段。我已經嘗試過如下但目前沒有喜悅。按名稱刪除所有輸入字段索引
$('input[name^=List[' + index + '].LastName]').remove();
由於name
屬性包含特殊字符([]
),你需要或者逃避他們在選擇:
$('input[name^=List\\[' + index + '\\].LastName]').remove();
或者更好的是,放置在引號中的屬性值:
$('input[name^="List[' + index + '].LastName"]').remove();