html中怎么禁用鼠標(biāo)左鍵?
經(jīng)常有禁止鼠標(biāo)右鍵、復(fù)制、剪切、鼠標(biāo)左鍵選取內(nèi)容的需求,解決的方式也非常簡單,只要在body標(biāo)簽里加入相關(guān)的屬性就可以了: 禁用鼠標(biāo)右鍵: oncontextmenu="returnfalse;" leftMargin="0"topMargin="0" 禁止復(fù)制和剪切: oncopy="returnfalse;" oncut="returnfalse;" 禁止鼠標(biāo)左鍵選取內(nèi)容: onselectstart="returnfalse" 示例: <bodyoncontextmenu="returnfalse;"leftMargin="0"topMargin="0"oncopy="returnfalse;"oncut="returnfalse;"onselectstart="returnfalse">