假設我有身體裏面很多環節,一個iframe中環節多,東西喜歡:jQuery的選擇所有鏈接,但不包括一個iframe裏面的鏈接
<div>
<a herf=xxxxxxx>...</a>
<a herf=xxxxxxx>...</a>
<a herf=xxxxxxx>...</a>
...
<a herf=xxxxxxx>...</a>
</div>
<iframe src=xxx>
<html>
<head>...</head>
<body>
<a herf=xxxxxxx>...</a>
<a herf=xxxxxxx>...</a>
<a herf=xxxxxxx>...</a>
...
<a herf=xxxxxxx>...</a>
</body>
</html>
</iframe>
如何jQuery來選擇所有鏈接,但不包括iframe中的鏈接?
感謝
默認情況下,jQuery是否選擇'
顯示js小提琴在這發生。我不相信它會選擇像if($'''')這樣的選擇框的鏈接。 – ddinchev
@qwzjk是對的,你實際上不能訪問iframe中的元素,而不使用特定的代碼來顯式訪問iframe的內容。 (見http://api.jquery.com/contents/) – Rodik