php yaf框架 文本框失去焦点事件触发js方法 怎么连接到一起
发布网友
发布时间:2022-04-30 17:31
我来回答
共1个回答
热心网友
时间:2022-04-13 01:49
绑定事件:onblur
=
"functionName()";
//这里是失焦事件绑定的方法,在JS里写functionName()
定义方法:
<script>
function
functionName(){
$.post("url....",{
//这里去相关PHP页面调用相关方法
data:data,
other:other},function(){
});
}
</script>