新しいバージョンの Google chrome は showmodalDialog を削除しました。このブラウザでの私のコードは動作しません どうすれば問題を解決できますか?
function AddTime(OfferTime) {
var x = new Array();
var ClsPartColeg = document.getElementById("ClassParam").value;
x[0] = SrcName(ClsPartColeg, 'PartCombo');
if (OfferTime)
x[1] = OfferTime;
else
x[1] = '$$0$' + SrcName(ClsPartColeg, 'College') + '$';
var s = showModalDialog("../HtmlPage/ClsTime.htm", x, "status:0;help:0;dialogWidth:420px;dialogHeight:100px");
if (s)
Perform('NewTime;Item=' + s);
}