我想根据分辨率禁用上下文菜单(单击鼠标右键)。
这是我的js代码:
angularRoutingApp.controller('mainController', function($scope,$window) {
var w = angular.element($window);
$(w).resize(function(){
if (window.innerWidth<1024) {
// here i disabled the click right mouse
}
});
});
有什么想法吗?感谢,