タグ付けされた質問 「attr」

18
.prop()と.attr()
したがって、jQuery 1.6には新しい関数がありますprop()。 $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) またはこの場合、彼らは同じことをしますか? また、を使用するように切り替える必要がある場合、1.6に切り替えるとprop()、すべての古いattr()通話が切断されますか? 更新 selector = '#id' $(selector).click(function() { //instead of: var getAtt = this.getAttribute('style'); //do i use: var thisProp = $(this).prop('style'); //or: var thisAttr = $(this).attr('style'); console.log(getAtt, thisProp, thisAttr); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script> <div id='id' style="color: red;background: orange;">test</div> …
2301 javascript  jquery  dom  attr  prop 

5
値なしで属性を設定
jQueryに値を追加せずにデータ属性を設定するにはどうすればよいですか?これ欲しい: <body data-body> 私は試した: $('body').attr('data-body'); // this is a getter, not working $('body').attr('data-body', null); // not adding anything その他はすべて、2番目の引数を文字列として追加するようです。値なしで属性を設定することは可能ですか?

6
jQueryを使用して入力無効化属性を切り替える
これが私のコードです: $("#product1 :checkbox").click(function(){ $(this) .closest('tr') // Find the parent row. .find(":input[type='text']") // Find text elements in that row. .attr('disabled',false).toggleClass('disabled') // Enable them. .end() // Go back to the row. .siblings() // Get its siblings .find(":input[type='text']") // Find text elements in those rows. .attr('disabled',true).removeClass('disabled'); // Disable them. }); 切り替える方法は.attr('disabled',false);? Googleで見つけられないようです。
189 jquery  toggle  attr 


15
エラー:(9、5)エラー:リソースandroid:attr / dialogCornerRadiusが見つかりません
だから私はandroid studio 3.0.1をインストールし、ビルドされたgradleを開くとすぐに次のエラーを表示しました。デザインやサポートなどの依存関係を追加しようとしたが無駄だった。誰かが私を助けてくれませんか?前もって感謝します。 これは、dialogCornerRadiusやfontVariation Settingsなどの一部の属性が見つからないことを示しています。
118 android  attr 

5
コードでattrs.xmlに作成された列挙型を取得する方法
enum型のdeclare-styleable属性を持つカスタムビュー(ここでそれを見つける)を作成しました。xmlで、カスタム属性の列挙型エントリの1つを選択できるようになりました。プログラムでこの値を設定するメソッドを作成したいのですが、列挙型にアクセスできません。 attr.xml <declare-styleable name="IconView"> <attr name="icon" format="enum"> <enum name="enum_name_one" value="0"/> .... <enum name="enum_name_n" value="666"/> </attr> </declare-styleable> layout.xml <com.xyz.views.IconView android:id="@+id/heart_icon" android:layout_width="wrap_content" android:layout_height="wrap_content" app:icon="enum_name_x"/> 必要なのは次のようなものです。mCustomView.setIcon(R.id.enum_name_x); しかし、列挙型が見つからないか、列挙型または列挙型の名前を取得する方法がわかりません。

4
jQuery attr vs prop?
さて、これはちょうど別されていない違いの質問は何、私がしているいくつかのテスト(http://jsfiddle.net/ZC3Lf/)を行って修正するpropとattrの<form action="/test/"></form>​ 出力がされた状態での: 1)プロップ変更テスト プロップ:http://fiddle.jshell.net/test/1 属性:http://fiddle.jshell.net/test/1 2)属性変更テストの プロップ:http://fiddle.jshell.net/test/1 属性:/test/1 3)Attr、次にProp変更テスト Prop:http://fiddle.jshell.net/test/11 Attr:http://fiddle.jshell.net/test/11 4)小道具、次にAttr変更テスト 小道具:http://fiddle.jshell.net/test/11 属性:http://fiddle.jshell.net/test/11 :今、私は私の知識が行く限り、物事のカップルについて混乱してい プロップを: JavaScriptを経由して任意の変更後の現在の状態で値 :Attrのそれは、ページの読み込みのHTMLで定義された通りの値です。 これが正しければ、 なぜ属性を変更すると完全修飾になったpropように見えaction、逆に属性を変更しないのですか? propinを1)変更すると属性が変更されるのはなぜですか? attrinを2)変更するとプロパティが変更されるのはなぜですか、それらはそのようにリンクされているのですか? テストコード HTML JavaScript var element = $('form'); var property = 'action'; /*You should not need to modify below this line */ var body = $('body'); var original …
102 javascript  jquery  attr  prop 

5
「value = x」の要素を見つける方法は?
を持つ要素を削除する必要がありますvalue="123"。異なる値を持つすべての要素がに配置されている#attached_docsことは知っていますが、で要素を選択する方法がわかりませんvalue="123"。 $('#attached_docs').find ... .remove(); 手伝って頂けますか?
102 jquery  find  attr 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.