Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は持っています:
var tag = this.params['tag'];
使用方法:
$('tag')
?
のパラメータは何this.params['tag'];ですか?
this.params['tag'];
ネイティブプロパティではありません。
それはおそらくあなたのタイプ/オブジェクトです
したがって、以下でjQueryを使用できます。
$('tag')[0].params['tag'] //better
また
$('tag').prop('params').tag //not recommanded