2
如何防止輸入和粘貼cleditor內的單引號和雙引號? 如何防止輸入和粘貼裏面的單引號和雙引號?如何防止輸入和粘貼cleditor中的單引號和雙引號?
<script type="text/javascript">
$(document).ready(function(){
$prevent_single_double_quote = function(e){
var element=e;
setTimeout(function() { element.val(element.val().replace(/['"]/g, "")); }, 1);
}
$('textarea').on('paste', function() {
$prevent_single_double_quote($(this));
});
$('textarea').on('keyup', function() {
$prevent_single_double_quote($(this));
});
$('input').on('paste', function() {
$prevent_single_double_quote($(this));
});
$('input').on('keyup', function() {
$prevent_single_double_quote($(this));
});
$('.scle').on('keyup', function() {
$prevent_single_double_quote($(this));
});
});
</script>
<div class="col-md-9">
<div class="block block-fill-white" id="mailcontent">
<div class="content np" id="mailcontent">
<textarea class="scle" name="mailcontent" id="mailcontent"></textarea>
</div>
</div>
</div>
讓我們使用添加它。處理它在服務器端..'addslashes或'mysqli_real_escape_string' – Rayon
我需要jquery函數 –
爲什麼我有一個可怕的感覺,這是一個**非常破**試圖防止代碼注入? – eggyal