Перенаправление на страницу с параметрами в JavaScript - PullRequest
0 голосов
/ 11 декабря 2010
function AddNew() {
            var _IsInterview = '<%: Session["IsInterview"] != null ? Session["IsInterview"] : "" %>';
            if (_IsInterview .toLowerCase() == 'true') {
                parent.$.fn.colorbox({ href: '/Vehicles/SaveRepository/?t=' + Math.random(), height: _popupHeight, width: _popupWidth, overlayClose: false });
            } else {
                var id4 = $("#BusinessId").val();
                parent.$.fn.colorbox({ href: '/Vehicles/SaveRepository/?id=0&id2=Vehicles&id3=Index&/' + id4 + '&t=' + Math.random(), height: _popupHeight, width: _popupWidth, overlayClose: false });
            }
        }

значение id4 не передается

1 Ответ

1 голос
/ 11 декабря 2010

Предполагая, что все остальное правильно:

function AddNew() {
    var _IsInterview = '<%: Session["IsInterview"] != null ? Session["IsInterview"] : "" %>';
    if (_IsInterview .toLowerCase() == 'true') {
        parent.$.fn.colorbox({ href: '/Vehicles/SaveRepository/?t=' + Math.random(), height: _popupHeight, width: _popupWidth, overlayClose: false });
    } else {
        var id4 = $("#BusinessId").val();
        parent.$.fn.colorbox({ href: '/Vehicles/SaveRepository/?id=0&id2=Vehicles&id3=Index&id4=' + id4 + '&t=' + Math.random(), height: _popupHeight, width: _popupWidth, overlayClose: false });
    }
}

Вместо "id4 =" у вас было "/".

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...