使用JavaScript触发URL

时间:2011-03-21 03:58:33

标签: javascript html ajax

我需要一个触发URL的脚本(转到URL就是这样)。

编写此脚本的最短方法是什么?

4 个答案:

答案 0 :(得分:4)

使用window.location

window.location = 'http://stackoverflow.com';

或更短(不推荐)。

location = 'http://stackoverflow.com';

不需要ajaxical魔法。

答案 1 :(得分:2)

window.location='http://www.google.com';

当然,您可以将网址和分号编码为高尔夫球。

答案 2 :(得分:1)

感谢: 使用window.location。

window.location =' http://stackoverflow.com';

答案 3 :(得分:0)

这是一个示例AJAX代码示例,可用于向浏览器发出静默查询并获取响应并对其进行操作。

var xmlhttp;

if (window.XMLHttpRequest)
    xmlhttp = new XMLHttpRequest();
else
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            // Do something with the result, like post a notification
        $('#notice').html('<p class="success">'+xmlhttp.responseText+'</p>');
    }
}

xmlhttp.open('GET',url, true);
xmlhttp.send();