我链接了一个jquery选择器。这是我的代码
$('[name="comp_detail_id[]"]').get(0);
这行代码在控制台中给出了这个结果。
<input type="hidden" name="comp_detail_id[]" value="5">
但是当我尝试这个时。
$('[name="comp_detail_id[]"]').get(0).val();
我明白了。
Uncaught TypeError: $(...).get(...).val is not a function(…)
我不知道发生了什么,因为我虽然在链接时返回当前对象。