<!– 禁止使用Ctrl+S功能組合 –>
<script>
$(document).keydown(function(e){
if( e.ctrlKey == true && e.keyCode == 83 ){
console.log(‘ctrl+s’);
return false; // 截取返回false就不會保存網頁了
}
});
</script>
<!– 禁止使用Ctrl+S功能組合 –>
Comments are closed.
<!– 禁止使用Ctrl+S功能組合 –>
<script>
$(document).keydown(function(e){
if( e.ctrlKey == true && e.keyCode == 83 ){
console.log(‘ctrl+s’);
return false; // 截取返回false就不會保存網頁了
}
});
</script>
<!– 禁止使用Ctrl+S功能組合 –>
Comments are closed.