1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <script language="javascript" type="text/javascript">
function sEval(code){ if (window.attachEvent && !window.opera) { execScript(code); }else{ window.eval(code); } }
function aEval(code) { eval(code); alert(id); } aEval("window.id=1"); alert(id);
</script>
|