함수 redirect()

121.159.139.189 (토론)님의 2017년 8월 23일 (수) 10:10 판 (→‎Java)
url
goto_url
location.href
Webview
WebBrowser

1 C#

webBrowser1.Url = new Uri(url1);

2 Java

<% response.redirect("******.jsp"); %>

2.1 ADT

WebView wv = (WebView) this.findViewById(R.id.webView1);
wv.setWebViewClient(new WebViewClient(){});
wv.loadUrl("http://example.com");

3 JavaScript

myframe.location.href="http://example.com";

4 jQuery

$('#myframe').attr('src', 'http://example.com');

5 PHP

function goto_url($url, $seconds=0) {
  die("<meta http-equiv='REFRESH' content='$seconds;url=$url'>");
}
function goto_url($url) {
  die("<script>location.href='$url';</script>");
}

6 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}