, .
1) , .
.
...
script iframe.... , script
, , , :
script ajax ( -, ), JS- script (new Function('The content of the script');), ( eval... ).
, , , , .
, script. ?... .
, script . , , script, , script.
2) ,
-: .
, , , ... .
, : . , ( ).
, , regExp... "new Something()"
var myArray = []; // not new Array();
var myRegExp = /^myRegExp$/; // not new RegExp('^myRegExp$');
var myString = 'myString'; // not new String('myString');
, Array . [], .
, , .
, . . . script , , , .
( ), " ". .
(function () {
}());
" ". . "undefined", , , .
(function (window, alert, Array, undef) {
alert('I\'m safe here.');
if([] instanceof Array) {
alert('I\'ve got the real Array object');
}
if(window.jQuery === undef) {
alert('jQuery not loaded');
}
}(this, this.alert, this.Array));
, script . , , , , .
source
share