Jquery mobile JQM+中的触摸事件;IE10+;W8

Jquery mobile JQM+中的触摸事件;IE10+;W8,jquery-mobile,windows-8,touch,tablet,internet-explorer-10,Jquery Mobile,Windows 8,Touch,Tablet,Internet Explorer 10,在Windows8平板电脑上使用JQM+IE10和触摸屏时,我发现了一个奇怪的问题。当使用外部鼠标och时,触摸板一切正常,但当我使用触摸屏时,JQM中的正常链接不起作用 有两个非常基本的JQM页面,b.html: <!DOCTYPE html> <html> <head> <title>Page Title</title> <meta name="viewport" content="width=device-

在Windows8平板电脑上使用JQM+IE10和触摸屏时,我发现了一个奇怪的问题。当使用外部鼠标och时,触摸板一切正常,但当我使用触摸屏时,JQM中的正常链接不起作用

有两个非常基本的JQM页面,b.html:

<!DOCTYPE html> 
<html>
<head>
    <title>Page Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>

<body>
    this is b.html
    <a href="a.html" data-role="button">link to a.html</a>
</body>
</html>
<!DOCTYPE html> 
<html>
<head>
    <title>Page Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>

<body>
    this is a.html
    <a href="b.html" data-role="button">link to b.html</a>
</body>
</html>
    a {
    -ms-touch-action: none;
    }