我在學習jQuery,並且對於熟悉它的人來說可能相當簡單。如何使用jQuery更新具有多個變量的輸入框或標籤
應用程序: 使用PHP與jQuery和Bootstrap切換按鈕(http://www.larentis.eu/bootstrap_toggle_buttons/)創建一個動態鏈接地址,具體取決於用戶打開了哪個切換按鈕。
現在,我使用的形式發佈一個曾經的頁面重新加載,然後它拉的POST變量,並將它們連接到鏈路切換按鈕的狀態。
我想這樣做是有當用戶切換按鈕,而不必使用表單發佈的jQuery將自動更改頁面上的鏈接。
我想做什麼就能做的是外行的角度解釋每個撥動按鈕被切換時間:
$link = "http://www.mydomain.com/students.php?view="
if jQuery toggle-button-1 = on then add "name"
if jQuery toggle-button-2 = on then add "id"
if jQuery toggle-button-3 = on then add "address"
// If toggle-button-1 and toggle-button-2 were on and toggle-button-3 was off
// then $views would equal
$views = "name,id"
// On the webpage it would then display
http://www.mydomain.com/students.php?view=name,id
// If the person toggled toggle-button-1 to off, the link would display:
http://www.mydomain.com/students.php?view=id
我希望我已經解釋了這個可以讓你瞭解它...它真的簡單的我想做的事情,我知道如何在PHP中做到這一點,但我覺得我一直在網上尋找應該是簡單的東西,我似乎無法包圍我的頭。
如果有人能幫我出或點我在正確的方向,我將不勝感激!
謝謝!
它看起來像coffeescript或somthing。你是否準備建造它? 如果不是你的語法是錯誤的 – VeXii
@VeXii請閱讀答案,而不是撇略,他說這是他的laymens條款解釋他想要什麼,而不是實際的代碼 – Andy
是的抱歉,這絕不是它的語法混合了PHP然後感嘆我想要jQuery做什麼的解釋 – sMyles