>  기사  >  웹 프론트엔드  >  스크립트 수집 iframe_javascript 기술

스크립트 수집 iframe_javascript 기술

WBOY
WBOY원래의
2016-05-16 19:27:55795검색

1. 메시지를 표시하지 않고 창을 닫습니다


2. iframe 방지
if (top.location != self.location)
{
top.location.href ="http://www.34do.net";
}

3. 객체 존재 여부 확인
document.all("a")==null (존재하지 않음)

4. 팝업 하위 창
window.open ('default.asp', 'newwindow', 'height=100, width=400, top=0, left=0, toolsbar=no , 메뉴바=no, 스크롤바=no, 크기 조정=no,location=no, 상태=no')

5. 모달 창을 엽니다.
window.showModalDialog('default.asp',window,' 도움말: 아니요 ; 크기 조정 가능: 아니요; 상태: 아니요;scrollbars:No;center: Yes;dialogWidth:width;dialogHeight:height;')

6. 팝업 하위 창은 상위 창을 새로 고칩니다. >window.parent.location .reload();

7. 모달 창은 상위 창을 새로 고칩니다.
window.parent.dialogArguments.document.execCommand('Refresh'); 8. js 파일에는 또 다른 A js 파일이 포함되어 있습니다
document.write('
')

9. 텍스트를 세로로 쓰도록 합니다 <script></script>
Florent

10. iframe은 iframe 파일에서 자체적으로 작동할 수 있도록 window.parent.document.getElementById("iframe_dg")
자체를 참조합니다. 예: window.parent.document.getElementById(" iframe_dg").height=200

11. 콘텐츠에 따라 IFrame 높이를 자동으로 조정
function autoSetIframeSize()
{
var obj=self.parent.parent.document.all [self.name];
if (obj!=null)
{
self.parent.parent.document.all[self.name].style.pixelHeight=self.document.body.scrollHeight 5 ;
}
}
iframe의 이름 속성을 정의해야 합니다.



a.asp의

12. 셀에 그라디언트 추가 색상 효과(예: Firefox에서는 지원, Firefox에서는 지원되지 않음) .bg3
{
FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr =#842B00, EndColorStr=#FFFFFF);
}
그림과 같이 효과가 나타납니다


13. 예약된 작업 실행
특정 기간: DelayID=setTimeout(vCode, iMilliSeconds). 필요한 경우 강제로 작업을 중지할 수 있습니다:clearTimeout(delayID)

14. 자동으로 선택하고 복사합니다

and copy me

15. 난수 생성 VB의 Rnd 함수에 의해 생성된 난수의 범위는 0~1입니다. (min, max) 범위에서 숫자를 무작위로 선택하려는 경우 구체적인 수식은 다음과 같습니다. Random number = (max - min) * Rnd() min, min 및 max는 임의의 정수일 수 있지만 min
16. 텍스트 상자를 양의 정수로만 제한하세요.
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.