私は選択したドロップダウンを入力してドロップダウンするプラグイン(https://github.com/olivM/jQuery-Selectbox)を持っています。ファイアウブでは動作するがコード実行では動作しないコマンドを呼び出す方法は?
次の方法では、コード内の偶数ハンドラを介して、ドロップダウンで要素の変更を切り離すことはできません。
私はこれをFirebugのインスペクタで手動でのみ行うことができます。
$('#elem').selectbox('detach');
$('#elem').selectbox('attach');
デタッチして選択ボックスをhtmlドロップダウンに追加するにはどうすればよいですか?
Method Description
attach .selectbox("attach") Attach the select box to a jQuery selection. This will hide the element and create its custom replacement.
change .selectbox("change") Change selected attribute of the selectbox.
close .selectbox("close") Close opened selectbox.
detach .selectbox("detach") Remove the selectbox functionality completely. This will return the element back to its pre-init state.
disable .selectbox("disable") Disable the selectbox.
enable .selectbox("enable") Enable the selectbox.
open .selectbox("open") Call up attached selectbox.
option .selectbox("option", options) Get or set any selectbox option. If no value is specified, will act as a getter.
をので、私は、アーカイブをフェッチ://web.archive.org/web/20160323122843/http://www.bulgaria-web-developers.com/projects/javascript/selectbox/ – Vahe
不思議なことに、私はコマンドを稼働させるためにタイムアウトを使う必要がありました。私はそれが同期の問題だと思います。 – Vahe