功能參數我有一個看起來像與查詢參數傳遞URL中的JavaScript
https://go.feeds4.com/merchants/?pid=1676&mid=4261
如何傳遞這個作爲函數參數的URL。我正在嘗試傳遞該值,但無法獲取該函數中的任何內容。
查詢參數中的&
是否會導致問題?
HTML
<a href="javascript:;"
onclick=rendernewmodal(<?php echo '"'.htmlspecialchars_decode($merchant->affiliate_link).'"'; ?>);>
<i class="fa fa-angle-right" aria-hidden="true"></i>
</a>
在查看頁面源代碼,我可以看到下面的
<a href="javascript:;"
onclick=rendernewmodal("https://go.feeds4.com/merchants/?pid=1676&mid=4261");>
JS
function rendernewmodal(url) {
alert (url);
}
我沒有看到URL的任何警報顯示值。請幫忙。
的onclick功能未在'」「'。 – Shubham