我能够附加图像,并且想在学生证编号中附加学生证,我该怎么做。
这是我的HTML:
<td><b>Hallticket:</b>S<div><p class="hallticketNumber">***studentid has to come here***</p>J'+jobID+'</div></td>
<td><div><img class="participantphoto" src=""/><input class="searchStudent" type="text" autocomplete="off"><input class="studentId" type="hidden" name="gdtest['+studentCount+'][studentId]"></div></td>
这是我尝试过的:
$(this).closest('div').find(".studentId").attr("value",ui.item.student_pid);//working
$(this).closest('div').find(".participantphoto").attr("src",ui.item.profile_pic);//working
$(this).closest('div').find(".hallticketNumber").attr("label",ui.item.student_pid); //Notworking
最佳答案
使用text()动态更改段落的内容。
$(".hallticketNumber").text(ui.item.student_pid);
关于javascript - 显示自动完成响应多个值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41396457/