目前,在搜索互联网后,我想出了这段代码:
function button(){
var button= getElementById("Sailthru");
button.addEventListener(MouseEvent.CLICK, onClick, false, 0, true)
function onClick(e:MouseEvent):void{
navigateToURL(new URLRequest("http://www.sailthru.com/"), "_blank");
};
虽然它不起作用,但我不确定如何继续。如果没有办法让它使用它,那么我将很乐意使用另一种方法。但是我想使用这种方法,因为我已经有一段时间了。
答案 0 :(得分:2)
这是什么语言混合?
使用普通的vanilla javascript进行此操作的最简单方法是这样的:
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
//HERE IS MY CODE TO SAVE DATA
return null;
}
@Override
protected void onPostExecute(Void result) {
}
}.execute();
答案 1 :(得分:1)
或者,这使用HTTP重定向。
HTML
<button id="btn">
Click
</button>
JS
btn.onclick = function() {
window.location.replace("http://www.sailthru.com/");
}
答案 2 :(得分:0)
你可以尝试
window.open或window.location根据您的需求
window.open( 'http://test.com', '_空白');
了window.location = “http://test.com”;