behalfmanage.js 492 Bytes


define(function( require, exports, module ) {
  var Pophint = require('pophint');

  $( '.b-pophint' ).click(function(){
      new Pophint( this , {
        head:"<span class='warningtips'>提示</span>"  ,
        content:'是否确认订单?(此仅作示例 因为回调的业务需要在本地代码重写 不需要引用behalfmanage.js)',
        operation : function( target ){
            //点击确定按钮执行的回调  
        },
        onname:"确认"
      });
  });
});