复制图标

请选择

目标桌面

{$cdtat_start} $("#add_icon_form_submit").click(function() { $("#add_icon_form").submit(); }); $("#add_icon_form").submit(function() { $(this).ajaxSubmit( { url: '/ajax/icon_copy.php', type: 'POST', timeout: 45000, beforeSubmit: function(formData, jqForm, options) { $(".button").hide(); $(".post_indicator").show(); }, success: function(responseText) { hideWindow(); if (responseText == 1) { showAlert({ content: '复制成功!',icon:'ok', time_out:5 }); } else { showAlert({ content: responseText }); } } }); return false; }); {$cdtat_end}