1
4

3 回答 3

2
于 2012-06-06T20:51:11.813 回答
0
function runSomeJsonpCall(obj) {
    //...
    document.location=obj.getAttribute('href');
    return false;
}

<a onclick="runSomeJsonpCall(self);" href="http://www.goherenext.com"> make this work </a>

另请注意 http:// 在 href 链接

于 2012-06-06T21:09:18.443 回答
-1

尝试:

<a onclick="runSomeJsonpCall();" href="#"> make this work </a>

和:

function runSomeJsonpCall() {
var script = document.createElement("script");
script.src = "http://jsonpurl.com?parameter1=" + "someparam";
document.body.appendChild(script);
window.location("www.goherenext.com");
}
于 2012-06-06T21:44:54.270 回答