嘿我試圖下面讓我的jQuery代碼的工作:jQuery的追加與圖像的HTML然後將其刪除不顯示
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代碼的末尾,但它不顯示?它看起來像這樣的螢火:
我在做什麼,以使其不顯示?
真棒......它讓我如何停止生成圖像每次我按下按鈕時提交...? – StealthRT
添加一個if條件來檢查圖像,然後添加它..檢查編輯 –
這似乎並不工作...無論如何保持添加 – StealthRT