0

我有addFeaturesToScene使用 ajax 创建新 URL 的功能。

功能结束后我需要自动进入新站点

这是代码:

function addFeatureToScene(featureNid, sceneNid)
  {
  alert(featureNid + " -> " + sceneNid);

     $.ajax({
    type       : 'GET',
    url        : '/copy-feature-and-add-it-to-scene/' + featureNid + '/' + sceneNid,
    dataType   : 'json',
    async      : false,
    success    : function(reply) {

            //Code to open a page with a new url?

 }
 });

 }
4

1 回答 1

2

您可以使用window.location

window.location.href = 'http://example.org';
于 2013-03-20T11:02:07.730 回答