How to dynamically add a style for text-align using jQuery

前端 未结 11 889
暗喜
暗喜 2020-12-08 04:19

I\'m trying to correct the usual IE bugs around CSS 2.1 and need a way to alter an elements style properties to add a custom text-align style.

Currently in jQuery yo

11条回答
  •  被撕碎了的回忆
    2020-12-08 04:44

    function add_question(){ var count=document.getElementById("nofquest").value; var container = document.getElementById("container"); // Clear previous contents of the container while (container.hasChildNodes()) { container.removeChild(container.lastChild); } for (i=1;i

    how to set center of the textboxes

提交回复
热议问题