我使用隱藏的輸入類型來隱藏URL中的數據。這裏是我的代碼獲取值表單輸入類型隱藏
<input type="hidden" name="post_type" value="kcc-product">
<input type="hidden" name="post_type" value="kcc-manufacturer">
當我使用它,我收到網址爲&post_type=kcc-product&post_type=kcc-manufacturer
但我需要它像:&post_type=kcc-product&kcc-manufacturer
只是我必須從URL中移除**post_type=**
。我試過
<input type="hidden" name="post_type" value="kcc-product">
<input type="hidden" name="" value="kcc-manufacturer">
但是,它不工作。我如何從URL中刪除**post_type=**
?有任何想法嗎?
你可以住'post_type = kcc-product,kcc-manufacturer'嗎?你應該花一點時間看看@表單提交是如何工作的以及如何格式化URL查詢字符串。你也可以做一些事情,比如'kcc-product =&kcc-manufacturer ='。 –
使用POST !!!!!!! –
要得到一個像你這樣的URL,你需要一個名爲'kcc-manufacturer'的表單域(隱藏或不隱藏),沒有任何價值。這可能不是你想要的。所以,我建議重新評估你需要什麼以及如何在服務器上使用提交的值。你可以使用jQuery來「組裝」URL,但是,如果你期待這個值,你必須在服務器上做錯了什麼。 – Floremin