modal中无法获得焦点的问题
<script type="text/javascript">
$.fn.modal.Constructor.prototype.enforceFocus = function() {};
</script>
modal中select2无效的问题(最好div写在最外层)
$(".normal-select2").select2({
dropdownParent: $("#selected2Parent"),
});
<div id="selected2Parent"></div>
autocomplete=“off” 属性失效
autocomplete="new-password" // 在type=passwork中无效,这时需要先设为type=text,再用js改为type=password
PHP字符串转数组去重去空值去空格
$array= array_filter(array_unique(array_map('trim', explode("\n", $array))));
PHP字符串去中文空格全角空格
preg_replace("/(\x20|\t|\f|\n| | |\xc2\xa0)/", '', $content); // 不删换行
preg_replace("/(\s| | |\xc2\xa0)/", '', $content);
str_replace(array('', '', chr(0xC2).chr(0xA0)), array('', '', ''), $content);
removeClass后还是能触发事件
// 加载时就已经绑定了事件,所以去掉了也没用。可以解除绑定事件
$(this).off('click');
// 或者用hasClass判断
if ($(this).hasClass('class')){}