使用jquery給label賦值的方法:1.新建html項(xiàng)目,引入jquery;2.創(chuàng)建label標(biāo)簽,設(shè)置id屬性;3.添加button按鈕,綁定onclick點(diǎn)擊事件;4.通過id獲取label對(duì)象,使用text()方法賦值;
具體步驟如下:
1.首先,新建一個(gè)html項(xiàng)目,并在項(xiàng)目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項(xiàng)目中創(chuàng)建一個(gè)label標(biāo)簽,并設(shè)置id屬性;
<label id="btn"></label>
3.label標(biāo)簽創(chuàng)建好后,添加一個(gè)button按鈕,并綁定onclick點(diǎn)擊事件;
<button onClick="set()"></button>
4.按鈕添加好后,在點(diǎn)擊事件中通過id獲取label對(duì)象,在使用text()方法即可給label賦值;
function set(){
$("#btn").text("需賦值的內(nèi)容");
}