突然發現Chrome瀏覽器版本 37.0.2062.103 m 不支援showModalDialog模態對話框和無法回傳returnValue
專案原先用到的都無法正常執行
找了個折中方案利用window.open取代showModalDialog利用 window.opener.document來操作父頁面的元素
window.open("xsp/exesp?todo=13","","height=500,width=280,status=yes,toolbar=no,menubar=no,location=no");
window.close();
window.opener.document.getElementById("classid").value=treeid;
window.opener.document.getElementById("classname").value=treename;