株式会社CONFRAGEでは、在宅就労支援、トライアル雇用を行っております。
LAMP,LAPP系が得意な方、是非お待ちしております。
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
function a(){
var a = window.showModalDialog("./a.html",window,"");
alert("戻り値 = " + a);
}
</script>
<input type="button" value="button" name="submit" onClick="a()">
</body>
</html>
<html>
<head>
<title></title>
</head>
<script type="text/javascript">
function a(){
window.returnValue="1";
window.close();
}
function b(){
window.returnValue="2";
window.close();
}
</script>
<body>
<input type="button" value="CLOSE1" name="submit" onClick="a()">
<input type="button" value="CLOSE2" name="submit" onClick="b()">
</body>
</html>