$(
'xx').
on(
'click',
function(){
var
ua =
navigator.
userAgent.
toLowerCase();
if (
ua.
match(
/iPhone\sOS/
i) ==
"iphone os") {
window.
location.
href=
'https://www.baidu.com';
}
else
if (
ua.
match(
/Android/
i) ==
"android") {
window.
location.
href=
'https://zhidao.baidu.com/question/2139062924097896708.html';
}
});