我能夠成功地從一個多選表單中的所有值變成一個很好的分隔變量,但我不知道如何獲得我的PHP腳本的價值?如何獲得PHP的$ _POST數組讀取的「輸出」值?任何幫助會。是。真棒。 :d
<script type="text/javascript">
function ValidatePageForm() {
var result = new Array();
$("#select-to option").each(function() {
result.push($(this).val());
});
var output = result.join("-");
alert(output);
}
</script>
你明白客戶端與服務器端? – 2013-04-24 04:34:19
你想要去哪個價值哪裏?我很困惑。你想要將$ _POST的值「插入」到jQuery中嗎?或者你想從jQuery-function「插入」到PHP中? – bestprogrammerintheworld 2013-04-24 05:15:05