使用jquery修改文本框寬和高的方法:1.新建html項目,引入jquery;2.添加文本框,設置id屬性;3.新建button按鈕,綁定onclick事件;4.獲取input對象,使用width和height設置寬高;
具體步驟如下:
1.首先,新建一個html項目,并在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中使用input標簽添加一個文本框,并設置id屬性;
<input typr="text" value="" id="test"/>
3.文本框添加好后,在項目中新建一個button按鈕,并綁定onclick點擊事件;
<button onclick="edithWh"></button>
4.最后,button按鈕新建好后,在點擊事件中獲取input對象,并使用width和height設置寬高即可;
function editWh(){
$('#test').css({"width":"300px","height":"50px"});
}