我想使用jquery獲取span元素內的textfield(只有一個)的值,但不能。jQuery的如何獲得span元素內的文本框的值
<span>simple span text
<a class="remove" href="javascript:" title="Remove">x</a>
<input type="hidden" name="word[ids][]" value="this is text">
</span>
相關聯的定位標記的
刪除類
jQuery代碼
$(".remove").live("click", function(){
alert ($(this).parent().('input:text').val()); // return undefined
//i just coded below to check whether span itself is getting or not
alert ($(this).parent().attr('tag')); // this also return undefined
if ($(this).parent().is('span'));
alert("parent is span"); // only this works
});
哎呀....誤解了這個問題,NVM。 –