問題タブ [pickadate]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
281 参照

javascript - pickadate() 関数が複製された要素で機能しない

複製された要素では、pickadate()機能を使用できません。これを解決するには?クラスを削除してから使用しようとしましたが、機能しません。

以下は私のjqueryコードです:

私はlaravelでコーディングしているので、構文は少し異なります。以下は、コードの html 部分です。

0 投票する
1 に答える
114 参照

jquery - JavaScript のクリック機能が動作しない

Jscriptコードpart1

パート2

2 つの日付ピッカーの値の差を計算しようとすると、クリック機能が機能しません。しかし、次のような簡単なことをしようとすると: document.getElementById("price").innerHTML = "safas"; それは動作します..私はそれを理解できませんでした。また、使用するコードは空のページで機能します。

そこで、提案された解決策を試し、いくつかの調査を行いましたが、最終的には処理できませんでした。

0 投票する
1 に答える
996 参照

javascript - Cant update vuejs2 v-model from native javascript change event

I'm trying to figure out how to fire native javascript events on an input given that I want to update a data attribute inside my vue instance.

I'm searched a bit on the matter (and that's how I got to the part that suggests the solution is a native javascript event) due to this post https://github.com/vuejs/vue/issues/96#issuecomment-37870300

So I have this input:

And through javascript I'm attempting to figure it's native event so that vue can update v-model="occurred" (I'm using pickadate.js)

I've tried a couple different ways but I can't seem to fully understand how it works.

I would be super glad if you could explain to me the solution rather than just give it as I want to comprehend it.

I've created a fiddle to help explain: https://jsfiddle.net/c1askwj2/5/

edit: A solution is to do what I don't want to do. Basically "expose" your view object:

This way you can access it through varFoo.thedate and set it:

This to me is a very ugly solution as I like to keep my vue objects unavailable...