var wx_auth = function () {
var jsonp = document.createElement('script');
jsonp.type = 'text/javascript';
jsonp.src = '';
document.getElementsByTagName('head')[0].appendChild(jsonp);
};
var jsonp_cb = function() {
};
点击事件调用wx_auth的时候,会不会调用jsonp_cb,注意jsonp.src=' '是空值。
wx_auth生成的js代码应该是
<script type="text/javascript" src=""> </script>
跟jsonp_cb没有任何关系,所以不会调用