artwl
artwl

Reputation: 3582

how to judge a page is in a iframe use javascript?

i use javascript to judge a page is in a iframe:

if (this != top) {
    alert("true");
}

enter image description here

but i get "true" all the time,even if not in a iframe(as up picture),who can help me?

Upvotes: 0

Views: 224

Answers (1)

Dennis
Dennis

Reputation: 14477

Try

if (self != top) {
    alert("true");
}

Upvotes: 4

Related Questions