function deleteItem() {
var item_id = jQuery(this).attr('data-item-id');
if (confirm("<?php echo JText::_('COM_CN_REPORTS_DELETE_MESSAGE'); ?>")) {
window.location.href = '<?php echo JRoute::_("index.php?option=com_cn_reports&task=commoverrideform.remove&id='%2Bitem_id%2B'", false, 2); ?>';
}
}
在浏览器中格式化为
function deleteItem() {
var item_id = jQuery(this).attr('data-item-id');
if (confirm("Are you sure that you want delete this item?")) {
window.location.href = 'http://cnbeta2.me/index.php?option=com_cn_reports&task=commoverrideform.remove&id='+item_id+'&Itemid=262';
}
}