我想针对所有黑莓设备做一些特定于设备的更改。以下是我编写的代码,显然不起作用。谢谢。
<script type="text/javascript">
var isMobile = {
BlackBerry: function() {
var ua = "BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179";
return navigator.ua.match(/^BlackBerry[0-9]*/) ? true : false;
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true : false;
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i) ? true : false;
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};
if( isMobile.BlackBerry() ) {
$('body').css('background','green');
$('div.send-to-friend-form').css('display', 'block');
$('a#add_body_hidden').hide();
}
编辑:我得到了答案并且已经在工作了。当stackoverflow允许我这样做的时候,我会在几天后发布它。