我的 MVC 应用程序中有一个网页。像这样
<html>
<head>
</head>
<body>
<div id="1st_section"> Contents................... so on</div>
<div id="2th_section">Contents................... so on</div>
<div id="3th_section">Contents................... so on</div>
<div id="4th_section">Contents................... so on</div>
</body>
</html>
在浏览器中渲染此页面时,我们只需要
<div id="1st_section"> Contents................... so on</div>
对此部分进行鼠标单击启用。除此部分外,应在整个网页中禁用鼠标单击事件。
您能否建议可能的方法来做到这一点?