概述
web 通过button触发函数方法
方法一
通过 οnclick="return sim_select();" 实现button与return sim_select()函数绑定
//html
<input id="sim_switch_button" type="button" class="common-btn" onclick="return sim_select();"/>
方法二
通过$("#sim_switch_button")..on("click", sim_select); 实现id为sim_switch_button的button与return sim_select()函数绑定
attr("value", common_apply)此语句作用是在button上显示common_apply里面储存的值
//html
<input id="sim_switch_button" type="button" class="common-btn" />
//js
var common_apply = "应用";
$("#sim_switch_button").attr("value", common_apply).on("click", sim_select);
最后
以上就是明亮向日葵为你收集整理的js通过button触发函数的全部内容,希望文章能够帮你解决js通过button触发函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复