我尝试使用$.css方法成功应用CSS属性ms-touch-action
。
$('#demo').css({
'height': '100%',
'position': 'relative',
'-ms-touch-action': 'none'
});
答案 0 :(得分:0)
试试这个
var elem = document.getElementById("demo");
elem.setAttribute("style","position:relative;-ms-touch-action:none;height: 100%,");
$('body').append($('#demo').attr('style'));