我的各種簡單代碼:var ac = Y.Plugin.AutoComplete(「searchInput」,「results」);YUI自動完成插件未定義
錯誤:遺漏的類型錯誤:對象#有沒有方法「自動完成」
,我需要包括一些具體的js文件還是...?
我的各種簡單代碼:var ac = Y.Plugin.AutoComplete(「searchInput」,「results」);YUI自動完成插件未定義
錯誤:遺漏的類型錯誤:對象#有沒有方法「自動完成」
,我需要包括一些具體的js文件還是...?
這可能意味着你沒有把它稱爲正確的方式。儘管以前我沒有使用它,但文檔說它只需要一個參數,而不是兩個字符串。見AutoComplete API:
init (config) Base
Inherited from BaseCore but overwritten in base/js/Base.js:191
Init lifecycle method, invoked during construction. Fires the init event prior to setting up attributes and invoking initializers for the class hierarchy. Parameters:
config Object Object with configuration property name/value pairs
Returns: Base: A reference to this object
所以,你應該嘗試創建一個配置對象,並把它作爲參數。
Alexis