<textarea rows="5" style="resize:none;" id="liutext" onmousedown="s(event,this)"></textarea>
<script>
function s(e, a) {
if (e && e.preventDefault)
e.preventDefault();
else
window.event.returnValue = false;
a.focus();
}
$(function() {
$("#liutext").click(function() {
$("#liutext").css("background", "#ffffff")
})
})
</script>复制代码
转载于:https://juejin.im/post/5afcf9d7518825428830dcdb