看我美食网
您的当前位置:首页jsonclick事件传参讲解_javascript技巧

jsonclick事件传参讲解_javascript技巧

来源:看我美食网


1、在页面中给方法传参数有两种方法

第一:onclick=cancel(id,patientId);

在js文件中定义cancel方法

如果要把当前对象传过去用onclick="cancel(this,id,patientId)"

js中cancel(obj,id,patientId)

第二:在js中用jquery$(function(){

var patientId=$("a").attr("patientId");

}),在页面中

2、onclick事件

显示全文