問題タブ [x-tag]
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.
html - x-tagを使用したキュウリ/カピバラのテスト
Cucumber/Capybaraで作成しているアプリをテストしています。使用しているxタグが表示されないようです。Cucumberがxタグを使用してページを適切にレンダリングしていないようです。これを解決する方法はありますか?これが問題だと思います。入力フィールドをxlogin.jsの外に置き、本体またはid = loginを使用してdivに入れると、機能するからです。
体:
特徴:
手順:
出力:
javascript - 複数の x タグの処理
注: この質問は、古いバージョンの Mozilla x-tag に基づいています。
私のプロジェクトではMozilla x-tagを使用しています。x-master というタグを作成しました。index.html でこれらのタグを 2 つ取得しました。
xtag コンポーネントは次のようになります。
私の問題: id x-one のメソッド getContent を呼び出すと、次のように出力されます: source2. どうすればこの動作を防ぐことができますか?
javascript - jQueryで「x-」で始まるタグを選択
タグ名で始まるノードを選択するにはどうすればよいですか"x-"
。階層 DOM ツリーの例を次に示します。
jQuery ではクエリを実行できません$('x-*')
。これを達成する方法はありますか?
internet-explorer - x タグが IE で WebComponentsReady を起動しない
これはクロムで動作しますが、IE では動作しません。
HTMLImports を使用して (x-tag ライブラリ経由で) タグをインポートしようとしていますが、WebComponentsReady イベントが発生せず、要素が HTMLUnknownElements として表示されます。
そして、私はコンソールでこれを取得しています...
ウィンドウが読み込まれた
HTMLImportsLoaded
要素 [オブジェクト HTMLUnknownElement]
テンプレート [オブジェクト HTMLUnknownElement] 未定義
SCRIPT5022: HierarchyRequestError
014_xtag、行 17 文字 13
HTMLImports は単なる失敗です。理由はわかりませんが、メインの html ファイルでカスタム要素を定義すると、問題なく動作します。
私もSafariでテストしています。テンプレート タグが空として表示されます。
そのため...テンプレートタグはインポート時に失敗しますが、実際のインポート自体は機能しています。
javascript - x-tag コンポーネントの Typescript インターフェイス署名をどのように定義しますか
x-tag 仕様には、純粋な JS で次の署名があります -
明らかに、メソッド、アクセサー、およびイベントは複数のエントリを持つことができます。
register 関数に渡されるオブジェクト リテラルに相当する Typescript を定義しようとしています。これを達成する方法はありますか?
polymer - カスタム要素の名前にはダッシュが必要ですか?
ダッシュを使用せずに独自のカスタム要素<date>
、<person>
、またはその他の名前を付けることは可能ですか? <city>
それらなしでdefine要素を使用できますか?
html - Creating custom _nested_ html tags using x-tag
I'm attempting to create a custom html tag using Mozilla's http://www.x-tags.org/. I have been able to register a test tag and use it correctly; however, I can't find any good examples of nested tags.
For example:
<parent-tag parent-attribute="parent">
<child-tag child-attribute="child1"/>
<child-tag>child2</child-tag>
</parent-tag>
I can get parent-attribute using 'accessors,' but how do I get child-attribute or value of the second child-tag?
I've seen a couple of hints that inside lifecycle of child nodes, I should reference parent nodes. However, how does that work when a set of tag hierarchy works together to create a result:
<chart-tag width="300", height="300">
<chart-x-axis isVisible="false"/>
<chart-y-axis min="0" max="100"/>
<chart-legend> this is the legend</chart-legend>
</chart-tag>
In order to convert this made-up tag soup into a chart, I need to get all values from all nodes. Do I have to start traversing parent/sibling nodes myself?