嘿,我想让我的 jquery 代码在下面工作:
function submitContactUs() {
if ($('#cf-name-txt').val() == '' || $('#cf-name-txt').val().charAt(0) == '*') {
$('#cf-name-txt').append("<img src=\"img/attention.png\" width=\"16\" height=\"16\" style=\"position:absolute; left: -7px; top: 7px;\" />");
}
}
HTML代码是这样的:
<div id="contactus-name">
<input type="text" id="cf-name-txt" style="width: 200px;" class="formBoxesContact" value="*Your Name">
</div>
它可以将图像添加到上面的 html 代码的末尾,但它不显示?在萤火虫中看起来像这样:
我在做什么使它不显示?