我正在尝试学习 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 中做到这一点,但我觉得我一直在网上搜索应该是的东西简单,我似乎无法理解它。
如果有人可以帮助我或指出正确的方向,我将不胜感激!
谢谢!!