Introduce external objects and pass parameters into web pages. I think everyone has this experience. Generally speaking, the tags used are iframe and embed (for flash), but neither of these tags can set parameters like xml, and can only pass values by appending query strings after the URL address. HTC is pretty good, but it doesn't have browser compatibility, so I think everyone won't consider it anymore.
Use script tags to load an external js file into the page, and it is equally valid regardless of whether the file is the same domain or not. This cross-domain feature can be said to be unique. Generally speaking, we just use js files as part of the public code, integrating some common functions and classes here. To put it another way, we regard the script tag as a large visual component, pass in parameters and adjust different layouts according to the parameters. This is very interesting.
For example, isn't this writing very intuitive and practical? Everyone will ask, how to get the parameters in the script tag? In fact, this is very simple. You just need to find the last script element in it, which is the current element, and then use the getAttribute method to get as many parameters as you want.
[Ctrl+A Select all Note:Introducing external Js requires refreshing the page before execution]
In addition to containing code, have you ever thought about using the script tag to store data? The purpose of this is mainly to achieve cross-domain restrictions.
Text can be stored in strings, but this method is not intuitive and requires special characters to be processed, such as:
str="aaaa"
str+="bbbb"
or
str="aaaa\
bbbb"
We can use functions to display the source code and display the characteristics of notes in the source code, and put the data in the notes cleverly, so that we can no longer comply with the specifications of js syntax.
[Ctrl+A Select all Note:Introducing external Js requires refreshing the page before execution]
There is an application, let's share it with you
Due to the patch of XP, all flashes on websites across the country were added with virtual boxes overnight, and they needed to be clicked to activate. When everyone was so angry that they had to think of a corresponding method. Here is how to insert flash on Sina.com:
-----------------------------------------------------
<script type="text/javascript" src="/home/"></script>
<script>
var objFlash = new sinaFlash("", "", "100", "100", "7", "", false,"high");
("wmode", "opaque");
("flashcontent_1D194BAF55E2");
</script>
-----------------------------------------------------
If you make good use of script tags, you can simplify it to:
-----------------------------------------------------
<script src="" movie="" width="100" height="100" wmode="opaque"></script>
-----------------------------------------------------
One sentence is enough
The following is the content of the file:
-----------------------------------------------------
var ol,oJs,flaID,sMovie
ol=("script")
oJs=ol[-1]
flaID=("flaID")||""
sMovie=("movie")
if((0,1)=="{"&&(-1)=="}")
sMovie=eval((1,-1))
l="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' id='"+flaID+"' width='"+(("width")||"100%")+"' height='"+(("height")||"100%")+"'>\
<param name=movie value='"+sMovie+"' />\
<param name=wmode value='"+(("wmode")||"window")+"' />\
<param name=allowscriptaccess value='always' />\
<embed id='"+flaID+"' name='"+flaID+"' allowscriptaccess=always wmode=transparent src='"+sMovie+"' width=120% height=100% type='application/x-shockwave-flash'></embed>\
</object>"
(l)