html简单网页代码 11个非常有用的HTML单行代码( 二 )


<head><base href="https://www.w3schools.com/" target="_blank"></head><body><img src="/images/defaultpic.gif">HTML base Tag</a></body>10. Controlling Context Menu and Paste您可以在使用右键单击时收听事件 。也可以尝试使用OnContextMenu和OnPaste属性粘贴内容并处理这些事件 。如果您不希望用户能够粘贴到密码等某些字段上 。则可以在该输入字段上写入Onpaste =“返回false” 。用户将无法粘贴到那里 。同样 。oncontextmenu在用户右键单击该元素时会触发 。
<input type="text" onpaste="return false" value="https://www.wangchuang8.com/Paste something in here"><div oncontextmenu="myFunction()" contextmenu="mymenu">11.Spellcheck当设置为 true 时 。拼写检查属性会告诉浏览器必须检查用户在此元素中输入的语法和拼写错误 。这是一个方便的属性 。可帮助用户编写正确无误的内容 。
<p contenteditable="true" spellcheck="true">This is a praggagraph. It is editable. Try to change the text.</p>

推荐阅读