0
我有這對我的提交按鈕移到通級聯變量的onclick
onClick="jsfunction('my-php.php','var1','Wait Message Here...')"
它傳遞3個參數給我的javascript功能
1st - my PHP File that will process the data
2nd - a variable of the data that will be processed
3rd - a wait message
現在我想通過多變量被分隔第二個參數逗號(如下所示 - var,var2,var3
我該怎麼做纔好。謝謝
只要'('my-php.php','var1,var2,var3','等待消息在這裏...')'?我真的不確定你想要達到什麼。 –
多個變量將被切碎在PHP文件中,它將處理數據 –
jsfunction是什麼樣的,PHP期望的是什麼?一個逗號分隔的字符串,或者各個$ _GET []鍵與各自的值? – Roonaan