0
如何根據選定的值選擇一個ASP.Net DropDownList的jQuery選項卡onchange?從DropDownList的onchange事件中更改jQuery選項卡
如何根據選定的值選擇一個ASP.Net DropDownList的jQuery選項卡onchange?從DropDownList的onchange事件中更改jQuery選項卡
你可以嘗試這樣的事:
$("#dropdownClientIDHere").change(function()
{
onDropdownChange(this.selectedIndex);
});
function onDropdownChange(index)
{
$('#tabsElement').tabs("select" , index);
}
(免責聲明 - 未測試)
它會選擇在下拉列表中所選項目的索引相匹配的標籤。
也值得看看jQuery ui tabs documentation。您需要查看的方法是select
,如此處所用。
更改標題和問題更容易理解。 – 2011-04-27 09:50:44