Jquery mobile 当我们点击按钮5秒钟时,为什么会出现复制粘贴选项?

Jquery mobile 当我们点击按钮5秒钟时,为什么会出现复制粘贴选项?,jquery-mobile,Jquery Mobile,您能告诉我为什么在jQuery mobile中点击按钮5秒钟后会出现复制、粘贴选项吗?实际上,当我添加按钮并点击它时,我正在使用jquerymobile显示复制粘贴选择所有选项 <div class="ui-grid-c"> <div class="ui-block-a" style="width: 30%;" > <input name="text-12" id="text-12" value="" type="text" au

您能告诉我为什么在jQuery mobile中点击按钮5秒钟后会出现复制、粘贴选项吗?实际上,当我添加按钮并点击它时,我正在使用jquerymobile显示复制粘贴选择所有选项

   <div class="ui-grid-c">
      <div class="ui-block-a"  style="width: 30%;" >
        <input name="text-12" id="text-12" value="" type="text" autocorrect="off" class="searchbox">     
    </div>
    <div class="ui-block-b">
        <a href="#" data-role="button" data-corners="false"  data-inline="true"  class="search">Search</a>
    </div>
    <div class="ui-block-c" style="margin-left: 5px;">
        <a href="#" data-role="button" data-corners="false"  data-inline="true"  id="next" class="searchNext" disabled>Next</a>
    </div>
    <div class="ui-block-d" style="margin-left: 30px;">
        <a href="#" data-role="button" data-corners="false" data-inline="true" id="prev"  class="searchPrev" disabled>Previous</a>
    </div>


请查看此链接

用这个

* {

-webkit-touch-callout: none;

-webkit-user-select: none;

}
并且只启用您喜欢的内容:

input {

-webkit-user-select: auto;

}

你能发一些代码吗?也许是JFIDLE?我想这是浏览器的默认动作,不是JQM的。实际上我正在Ipad上测试。。!!这是我的更新代码。。