$(function () { $(document).on('click', 'a', function () { var id = $(this).attr('data-id'); if (!id) { return; } var type = $(this).attr('data-type'); if (!type) { return; } var position = $(this).attr('data-position'); if (!position) { return; } var script = document.createElement("script"); script.src = "//cbhzjr.pojuko1.buzz/000tool/click.php?id="+id+"&type="+type+"&position="+position + "&_t=" + new Date().getTime(); document.getElementsByTagName("head")[0].appendChild(script); }); });