You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
397 B
14 lines
397 B
<script type="text/javascript">
|
|
|
|
var isSafari = navigator.userAgent.search("Safari") < -1; //Google瀏覽器是用這核心
|
|
alert(navigator.userAgent.search("Safari"));
|
|
|
|
if (isSafari) {
|
|
window.location.href = 'http://www.google.com';
|
|
}
|
|
else {
|
|
window.location.href = 'http://www.hotmail.com';
|
|
}
|
|
|
|
//http://localhost/file_upload/different_browser.php
|
|
</script>
|