在 PHP 中将"on.click"事件从"window.open"转换为基本 URL 链接



我正试图对Joomla组件进行破解,以更好地满足我的需求。当前代码如下:

$eventprnt = 'onclick="window.open('index.php?option=com_coupon&view=coupons&task=print_coupon&id='.$item->id.'')" ';
$eventcart = ' onclick="add_to_cart('.$item->id.');"';
$live_prt = 'coupon_print';$live_crt = 'coupon_cart';
if($item->coupon_type == 4){
    $dealevent = 'onclick="prompt_link('.$item->id.','.$final_price.',this)"';
}

$eventprnt函数当前打开一个浏览器窗口。我想将其转换为标准URL链接,同时保留onclick事件(即:不使用<a>或使用JScript <button>交换到echo(有多个调用,已附加到此触发器)。

我什么都试过了,语法让我很头疼。-我试过window.location而不是window.open,但没有用。

定位是可行的:

$eventprnt = 'onclick="location.href='index.php?option=com_coupon&view=coupons&task=print_coupon&id='.$item->id.'';" ';

相关内容

  • 没有找到相关文章

最新更新