$ is not defined in iFrame

后端 未结 4 1975
别跟我提以往
别跟我提以往 2021-01-04 06:53

I have a page with an iframe in it. my iframe page is iframe.php and my main page is main.php when i load iframe.php directly my jquery code executes fine, but when I load m

4条回答
  •  轮回少年
    2021-01-04 07:17

    Bad news-- you can't use Jquery unless it's in the document. So, you're gonna have to load it regardless.

    There's actually no harm in including the jquery call in both documents. I have several clients who iFrame a portion of my company's app for marketing automation (which has it included) and also have Jquery included in their parent document, and it works just fine with no conflicts. From a load standpoint, assuming you're setup correctly, the hit will be negligible due to caching. So, include away.

    Rule of thumb on iFrames...think of them as separate pages inside your page. Yes, in some cases things carry over, but the document origin model prevents things like CSS from crossing between parent and child.

提交回复
热议问题