function xlink(E,URL)
{
switch(E)
{
case 'new': window.open( URL,'new','left=100, top=100, width=640, height=480, resizable, directories, location, menubar, scrollbars, toolbar, status');
break;
case 'parent':
parent.document.location.href = URL;
break;
case 'iframe_document_write':
var imgtarget = window.open('','iframe_name_main');
imgtarget.document.open();
imgtarget.document.write('<a href="http://weezzle.net/">aaa');
imgtarget.document.write('</a>');
imgtarget.document.close();
break;
case 'iframe_link' :
document.iframe_name_main.location.href = URL;
break;
default:
document.location.href = URL;
break;
}
}
function xIFrameSize () {
try
{
var iframeElement = xGetElementById('iframe');
if(iframeElement==null) return;
if (iframeElement.contentDocument && iframeElement.contentDocument.body.offsetHeight) { //ns6 syntax
iframeElement.style.height =iframeElement.contentDocument.body.offsetHeight+50+'px';
} else if (iframeElement.Document && iframeElement.Document.body.scrollHeight) { //ie5+ syntax
iframeElement.style.height =iframeElement.Document.body.scrollHeight+50+'px';
} else {
iframeElement.style.height = 1000+'px';
}
} catch(e) {}
}
function Button_Press_Event(value) { xlink('iframe_link','http://weezzle.net'); }
<select name="Posting_Site_Name" size="5" onclick="Button_Press_Event(this.value);">
<option selected value="aaa">[AAA]</option>
</select>
자바스크립트 두번째 요약정리 (0) | 2016.11.05 |
---|---|
자바스크립트 첫번째 요약정리 (0) | 2016.11.05 |
[프로그래밍] 자바스크립트와 PHP를 연동 (0) | 2016.10.21 |
버튼 클릭과 동시에 textarea내용이 클립보드로 저장되는 소스 (0) | 2016.07.10 |
자바스크립트로 URL 쿼리스트링 값 사용하기 (0) | 2016.06.23 |