~號(hào)在jQuery中是什么意思
3 回答

慕森王
TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超3個(gè)贊
123 | f = '<form id="f"><input name="1"/><input name="2"/><input name="3"/></form><input name="outer_1"/>' ; $( 'body' ).append(f); $( '#f' ).find( '~input' ); |
看,會(huì)選擇到 <input name="outer_1"/>,所以你給的例子就是選擇到與 $name 元素相鄰的 span
與 $('#f~input') 一樣,$name.find("~span") 也可以改成 $($name + '~span')
你可以在 console 執(zhí)行代碼
- 3 回答
- 0 關(guān)注
- 820 瀏覽
添加回答
舉報(bào)
0/150
提交
取消