Jquery 長按後 複製文字至剪貼薄
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile 長按後 複製文字至剪貼薄</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>
//長按可以複製至剪貼薄中
$(document).on("pagecreate","#page1",function(){
$("#badge-code").on("taphold",function(){
//$(this).hide();
this.select();
document.execCommand('copy');
alert("文字己複製至剪貼薄中");
});
});
</script>
</head>
<body>
<center>
<div data-role="page" id="page1">
<div data-role="header">
<h1>程式頁面</h1>
</div>
<div data-role="main" class="ui-content">
測試複製文字點擊下方<input type='text' id='badge-code' name='SendNum' size='11' value="20171119001" readOnly style='BACKGROUND-COLOR:#cccccc; height:100%; ' >
</div>
</center>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile 長按後 複製文字至剪貼薄</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>
//長按可以複製至剪貼薄中
$(document).on("pagecreate","#page1",function(){
$("#badge-code").on("taphold",function(){
//$(this).hide();
this.select();
document.execCommand('copy');
alert("文字己複製至剪貼薄中");
});
});
</script>
</head>
<body>
<center>
<div data-role="page" id="page1">
<div data-role="header">
<h1>程式頁面</h1>
</div>
<div data-role="main" class="ui-content">
測試複製文字點擊下方<input type='text' id='badge-code' name='SendNum' size='11' value="20171119001" readOnly style='BACKGROUND-COLOR:#cccccc; height:100%; ' >
</div>
</center>
</body>
</html>
留言
張貼留言