09/10/2018, 23:46
FireFox ko hiểu một số User Defined Tag - Help
Này nhé, trong 1 control của form, vd cái <select>:
<form name=f1 id=f1>
<select name="country" size="15" class="text3" id="country" >
<option value="AR" country_code="54" >ARGENTINA</option>
</select>
</form>
Đấy, cái property country_code="54" đấy.
Giờ tớ gọi nó nè:
< script>
alert(document.f1.country[document.f1.country.selectedIndex].country_code);
</script>
IE chạy tốt, còn FireFox thì nó tèo . Có cao nhân nào giúp tớ làm sao cho FireFox hiểu user defined tag không?
<form name=f1 id=f1>
<select name="country" size="15" class="text3" id="country" >
<option value="AR" country_code="54" >ARGENTINA</option>
</select>
</form>
Đấy, cái property country_code="54" đấy.
Giờ tớ gọi nó nè:
< script>
alert(document.f1.country[document.f1.country.selectedIndex].country_code);
</script>
IE chạy tốt, còn FireFox thì nó tèo . Có cao nhân nào giúp tớ làm sao cho FireFox hiểu user defined tag không?
Bài liên quan
Mà thắc mắc 1 tý, xài cái country_code thì cái value dùng để làm gì thế nhỉ.
Chắc đành chịu vậy, phải làm cách classic như pác lkn2 nói thui.