我嘗試在執行cfselect綁定後運行javascript函數。有什麼辦法可以達到這個目標嗎?這是我的發言。在單個cfselect中運行多個函數bind
cfselect名稱= 「artType」 ID = 「artType」 大小= 「1」 查詢= 「qArtType」 顯示= 「the_value」 值= 「ID」
cfselect ID = 「allValues」 名稱= 「allValues」 multiple =「true」bindonload =「true」bind =「cfc:art.getArt({artType})」size =「10」style =「width:100%;」
第一個選擇「artType」驅動第二個選擇「allValues」。
我想在我的綁定執行後調用一個javascript函數。它被稱爲listAll()。有什麼辦法可以做到這一點嗎? 謝謝。