'id'または'class'を使用せずにjqueryでVML要素を選択したいのですが、うまくいきませんでした。
<v:oval id="vmlElement" style='width:100pt;height:75pt' fillcolor="red"> </v:oval>
$(document).ready(function(){
//don't work
var oItem = $("v");//from here I should look for the n-th 'v' element, but for this example it is not necessary
$(oItem).attr("fillcolor", "green")
//alert($(oItem).attr("fillcolor"));
//This worked, but I can't use select to id, or class
$('#vmlElement').eq(0).attr("fillcolor", "green");
});
私はVML
それが古すぎることを知っています、そして使用する方が良いSVG
です。ただし、古いブラウザとの互換性が必要なため、を使用する必要がありますVML
。すべてのNormal - Browser
人にSVGを使用しており、すべてが魅力のように実行されます。
どうもありがとう。