请问jquery 怎么定义函数 调用函数?
4 回答
一只斗牛犬
TA贡献1784条经验 获得超2个赞
简介:jq是js的一个框架,定义函数,其实就是js定义函数,而调用函数时,是通过事件触发的。
函数定义:function funtionName(){}
调用函数:
举例说明:
<input type="text" name="username" id="username" value=""/>
<input type="button" id="check" value="验证"/>
<script>
$(function(){
$("#check").click(function(){
check_username();
})
});
function check_username(){
if(!$("#username").val())
{
alert("姓名为空");
}
}
</script>
哆啦的时光机
TA贡献1779条经验 获得超6个赞
试试改成这样:
1 2 3 4 5 6 7 8 9 10 11 | <script> (function($){ $.render = function(jq){ alert("这里是jquery代码"); } })(jQuery);
$(function(){ $.render(null); }); </script> |
- 4 回答
- 0 关注
- 422 浏览
添加回答
举报
0/150
提交
取消