分类 随笔 下的文章

h5页面点击事件ios没反应 移动端兼容性问题
$(document).on("click",".动态添加的dom",function(){
  console.log("11")

})

//在ios里这里动态添加的dom点击事件不会触发,解决办法:给触发点击事件动态添加的dom增加样式,cursor:pointer |||||| 或者增加一个touch事件

ios input button背景色不起作用的

input[type=button], input[type=submit], input[type=file], button { cursor: pointer; -webkit-appearance: none; }
background改成background-color

解决:
PHP addslashes() 函数
在每个双引号(")前添加反斜杠:

<?php
$str = addslashes('Shanghai is the "biggest" city in China.');
echo($str);
?>

addslashes() 函数返回在预定义字符之前添加反斜杠的字符串。

预定义字符是:

单引号(')
双引号(")
反斜杠()
NULL
提示:该函数可用于为存储在数据库中的字符串以及数据库查询语句准备字符串。

注释:默认地,PHP 对所有的 GET、POST 和 COOKIE 数据自动运行 addslashes()。所以您不应对已转义过的字符串使用 addslashes(),因为这样会导致双层转义。遇到这种情况时可以使用函数 get_magic_quotes_gpc() 进行检测。

CSS:

*{
moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}

属性有三个属性值:

  1. none:用none,子元素所有的文字都不能选择,包括input输入框中的文字也不能选择。
  2. -moz-all:子元素所有的文字都可以被选择,但是input输入框中的文字不可以被选择。
  3. -moz-none:子元素所有的文字都不能选择,但是input输入框中的文字除外

通过body标签:

前面一句是禁止右键,后面一句是禁止复制。

<body oncontextmenu="return false;" onselectstart="return false">

通过JS实现:

<body   onselectstart="return   false;">
<table   onselectstart="return   false;">
</table>
</body>

https://www.cnblogs.com/yoo104/p/10703267.html