Skip to content

Instantly share code, notes, and snippets.

@nasum
Created October 2, 2014 10:14
Show Gist options
  • Save nasum/f2df6a989b39029fe363 to your computer and use it in GitHub Desktop.
Save nasum/f2df6a989b39029fe363 to your computer and use it in GitHub Desktop.
optionタグをクリックして発火させたい関数があるときeventバインディングを使う(KnockoutJSを用いて) ref: http://qiita.com/tomato360/items/a3e134efae5cd3004247
<select>
<option data-bind="click : $root.hoge">hoge</option>
<option data-bind="click : $root.hoge">fuga</option>
</select>
<select data-bind="event : $root.hoge">
<option>hoge</option>
<option>fuga</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment