js 实现点击按钮

版权声明:博客知识产权来源命运的信徒,切勿侵权 https://blog.csdn.net/qq_37591637/article/details/89277601

需求说明

有时候为了更好的用户体验,我们需要js来实现点击按钮的操作


html代码

    <button type="button" id="closeb"  >关闭 </button>

js代码

function hhh(){
		 $("#closeb").click(); 
		}

猜你喜欢

转载自blog.csdn.net/qq_37591637/article/details/89277601