Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
488 views
in Technique[技术] by (71.8m points)

Jquery load with script tags

I read something about the .load function in jQuery. Is there a way to insert the script tags in the loaded page?

When I try to load a page the scripts doesn't load :s, I want to fix this. And getscript() isn't a option.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

When .load() returns HTML content that contains <script> tags, jQuery strips out the <script> tags, moves them,1 executes them, and then removes them.

While this makes it hard to step through those scripts with a debugger, the scripts do execute.

See also


1Either to the <head>, or the parentmost element — I haven't found an authoritative source on this yet, though I could just check the jQuery source...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...