3
2

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プラグイン作成で躓いたこと2

Posted at

普段見ないエラーがいくつか出て困りました・・・

Uncaught TypeError: Illegal invocation

cssの書き方を間違えたため起こりました。シングルクォートで囲んだらエラーが消えました。

.css(top, ***)

.css('top', ***)

Object 数値 has no method 'match'

他のmatchを使った場所では起きてないため調べたところ、matchした文字列のところに数値が入っていました。数値を文字列化したらエラーが消えました。
文字列化参考サイト:http://tamamemo.blogspot.jp/2011/12/javascript_29.html

String(数値)
3
2
0

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?