lolboxYaStat.js 272 B

123456789101112
  1. $(function() {
  2. // 利用客户端方法进行统计上报
  3. $("body").on('click', '.ya_stat',function(event){
  4. var yaCode = $(this).attr("ya_code") || '',
  5. yaDesc = $(this).attr("ya_desc") || '';
  6. try {
  7. window.external.data_report(yaCode, yaDesc);
  8. } catch(err) {
  9. }
  10. });
  11. });