2
我有這個html輸入。jquery添加一個元素旁邊的輸入元素
<input type='text' class='req-in' name='fname'>
<input type='text' class='req-in' name='lname'>
我正在嘗試添加輸入字段旁邊的somr元素。我試過append()
和prepend()
但它出錯了。
這是我的代碼:
$('.req-in').blur(function() {
$(this).append('<p>some text here for this field only!</p>');
});
這可能嗎?我的理想輸出是這樣的
<input type='text' class='req-in' name='fname'><p>some text here for this field only!</p>
<input type='text' class='req-in' name='lname'>
D'哦!打敗我吧。 –
鼓手打鼓手:) –