showModalDialog 전송 값
1811 단어 showModalDialog
var str="selectbusinessunit.aspx?unitid="+unitid.value;
function selectunit() {
var unitid = $("#txtBunitid");
var str = "WebForm1.aspx?unitid=" + unitid.value;
var result = window.showModalDialog(str, '', 'dialogWidth=35;dialogHeight=31;resizable=no;scroll=no;status=no');
if (result != null && result != "")//
{
var name = result.split('|')[0];
var id = result.split('|')[1];
$("#tb_departID").val(name);
$("#txtBunitid").val(id);
}
}
var result= window.showModalDialog(str,'','dialogWidth=35;dialogHeight=31;resizable=no;scroll=no;status=no');
<html xmlns="http://www.w3.org/1999/xhtml">
var returnValue = ""; function SelectProduct() { var products = document.getElementsByName("product"); for (var i = 0; i < products.length; i++) { if (products[i].checked == true) { returnValue += products[i].value; } } window.returnValue = returnValue; alert(window.returnValue); window.close(); }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
showModalDialog 모드 대화 상자부모 창에서 하위 창 열기 하위 창 코드 1. show Modal Dialog와 show Modeless Dialog는 어떻게 다릅니까?showModalDialog: 열려 있으면 항상 포커스를 입력합니다.대화 상자가...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.