4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jQueryプラグイン作成で躓いたこと1

Posted at

ドットインストールのjQueryプラグイン入門見ながらプラグイン作りました。困ったことがあったので、メモ。

#オプションをcssのプロパティに使いたい

要素がfixedだったりして左右の位置をオプションで決めたいときなんかに、
オプションをプロパティに使いたいですがこれではエラーができます。
変数に入れてもダメでした。

//プロパティにオプションをつっこむと、エラーでる
elements.css({
~省略~
    opts.pos: 0,
~省略~
});

//変数にオプションつっこむと、動かない
var opts_pas = opts.pos;
elements.css({
~省略~
    opts_pas: 0,
~省略~
});

//.css({})じゃなくて、.css()だと動いた!
elements.css(opts.pos, 0)
もしくは
var opts_pas = opts.pos;
elements.css(opts_pos, 0)

とりあえず動いたのを採用しようと思います。

4
4
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?