我正在尝试从此行中获取tabIndex的内容:
<input name="110" title="" id="test" style="position: absolute; top: 155px; left: 687px; tabindex: 3; z-order: 99;" type="checkbox" CHECKED="checked" runat="server" value="on"/>
并通过javascript将其设置为HTML属性。
我该如何实现?
理想情况下,我希望看到的是:
<input name="110" title="" id="test" tabindex= "3" style="position: absolute; top: 155px; left: 687px; ; z-order: 99;" type="checkbox" CHECKED="checked" runat="server" value="on"/>
最佳答案
tabIndex is not a style property it should be out side style attribute.
获得tabIndex
var x = document.getElementById("test").tabIndex;
设置
tabIndex
document.getElementById("link3").tabIndex = 6;
关于javascript - 抓取CSS值并将其放置为HTML属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30055856/