0
當我調用window.open方法時,如何傳遞不同的值。值是表單值。將參數傳遞給window.open
當我調用window.open方法時,如何傳遞不同的值。值是表單值。將參數傳遞給window.open
我假設您希望將值輸出到JavaScript函數window.open。你可以回顯window.open和標籤之間的各種選項。類似這樣的:
// untested code
$options = "width=$width,height=$height";
$url="www.google.com";
// assuming you have echoed out the JavaScript language tags
echo "window.open('$url', '$options');";