2017-05-31 91 views
0

你好,我需要你的幫助。 我有這個按鈕的功能:PHP和javascript onclick 2函數

onclick="javascript:addProduct(\'prm\',' . $item['pk_i_id'] . ');"

它工作正常,但我需要添加其他的onclick功能,我需要點擊它一下子時,也打開一個新窗口。 新的窗口,我需要打開的是:

onclick="window.open('https://chile.dineromail.com/Carrito/cart.asp?NombreItem=Pagar Premium&TipoMoneda=1&PrecioItem=2490.00&NroItem=-&DireccionExito=http://www.comprafy.cl/paymentpro/checkout&DireccionFracaso=http://www.comprafy.cl/paymentpro/menu&DireccionEnvio=0&Mensaje=0&MediosPago=4,5,6,21,23,2,7&Comercio=1313434','Carrito','width=750,height=475,toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,directories=no');"
我已經嘗試過:

onclick="javascript:addProduct(\'prm\',' . $item['pk_i_id'] . ');window.open("https://chile.dineromail.com/Carrito/cart.asp?NombreItem=Pagar Premium&TipoMoneda=1&PrecioItem=2490.00&NroItem=-&DireccionExito=http://www.comprafy.cl/paymentpro/checkout&DireccionFracaso=http://www.comprafy.cl/paymentpro/menu&DireccionEnvio=0&Mensaje=0&MediosPago=4,5,6,21,23,2,7&Comercio=1313434','Carrito','width=750,height=475,toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,directories=no");"

,但我得到這個錯誤: 語法錯誤,意外」, '這是'Carrito'之前和之後的逗號 是否有這樣做的可能性?謝謝!

+0

嗨,請編輯你的問題,包括你已經嘗試過什麼沒有工作,也請記住包括你得到的錯誤。 – Epodax

+0

已經做了,謝謝 –

回答

0

這是你想要的嗎?

onclick="javascript:addProduct('prm','" . $item['pk_i_id'] . "');window.open('https://chile.dineromail.com/Carrito/cart.asp?NombreItem=Pagar Premium&TipoMoneda=1&PrecioItem=2490.00&NroItem=-&DireccionExito=http://www.comprafy.cl/paymentpro/checkout&DireccionFracaso=http://www.comprafy.cl/paymentpro/menu&DireccionEnvio=0&Mensaje=0&MediosPago=4,5,6,21,23,2,7&Comercio=1313434','Carrito','width=750,height=475,toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,directories=no');" 

只需用上面的代碼替換onClick屬性即可。

+0

是的,我編輯了一些細節,如果你能幫助我,我將非常感激。 –

+0

@JorgeMerinoSantander我編輯了我的答案。一旦檢查。 –

+0

不工作我有一個逗號打破它。你知道我在哪裏可以找到一些開發人員來解決這個問題嗎?我可以支付這項工作.. –

0

使用此:

onclick="javascript:addProduct(\'prm\',' . $item['pk_i_id'] . '); window.open("http://www.google.com");" 

希望它能幫助!