我想從我所在的對象中檢索我的id和類型。php中的變量會話
然後,在一類我做的:
$refType = $_REQUEST['refType'];
$refId = $_REQUEST['refId'];
和:
<input id="refType" name="refType" type="hidden" value="<?php echo ****" />
<input id="refId" name="refId" type="hidden" value="<?php echo ****;?>" />
當我把我的頁面在JS我做的:
url="addNote.php?refType="+refType+"&refId="+refId;
window.location=url;
但在我的網址,當我嘗試去我的網頁我有:
?refType = undefined & refId = undefined
有人可以幫我嗎?謝謝 !
PHP是服務器端,JS是客戶端。您無法從客戶端訪問服務器端變量,因此refType和refId未在您的JS代碼中設置。 – Hokascha
哦好吧...我怎麼能檢索我的refId和refType呢? ... :( – krowry
我認爲''document.getElementByID('refType').val()'代替'refType'會讓你。這是一個JS問題,但不是PHP。或者如果你有jquery'$ ('#refType).val()'。 – chris85