溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jquery賦值的方式有哪些

發(fā)布時(shí)間:2022-06-10 09:36:58 來源:億速云 閱讀:597 作者:zzz 欄目:web開發(fā)

本篇內(nèi)容介紹了“jquery賦值的方式有哪些”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

jquery有3種賦值方式:1、使用text(),語法“$(selector).text(content)”,可以設(shè)置被選元素的文本內(nèi)容。2、使用html(),語法“$(selector).html(content)”,可以設(shè)置被選元素的內(nèi)容(innerHTML);3、使用val(),可以設(shè)置被選元素的value屬性,一般用于input輸入框的賦值。

jquery賦值的方式有哪些

本教程操作環(huán)境:windows7系統(tǒng)、jquery3.6.0版本、Dell G3電腦。

jquery賦值有三種方法:

  • text()

  • html()

  • val()

text() 方法

text() 方法可以設(shè)置被選元素的文本內(nèi)容。

語法:

//設(shè)置文本內(nèi)容:
$(selector).text(content)

//使用函數(shù)設(shè)置文本內(nèi)容:
$(selector).text(function(index,currentcontent))

示例:給div賦值

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<script src="./js/jquery-3.6.0.min.js"></script>
		<script>
			$(document).ready(function(){
				$("button").click(function(){
					$("div").text("Hello world!");
				});
			});
			</script>
	</head>
	<body>

		<div style="width: 200px;height: 100px;border: 1px solid #AFEEEE; background-color: #AFEEEE;"></div><br>
		<button>給div添加內(nèi)容</button>

	</body>
</html>

jquery賦值的方式有哪些

html() 方法

html() 方法可以設(shè)置被選元素的內(nèi)容(innerHTML)。

語法:

//設(shè)置內(nèi)容:
$(selector).html(content)

//使用函數(shù)設(shè)置內(nèi)容:
$(selector).html(function(index,currentcontent))

示例:給p賦值

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<script src="./js/jquery-3.6.0.min.js"></script>
		<script>
			$(document).ready(function(){
				$("button").click(function(){
					$("p").html("Hello world!");
				});
			});
		</script>
		<style>
			p{
				width: 200px;
				height: 100px;
				border: 1px solid #AFEEEE;
				background-color: #AFEEEE;
			}
		</style>
	</head>
	<body>

		<p></p>
		<button>給p添加內(nèi)容</button>

	</body>
</html>

jquery賦值的方式有哪些

val() 方法

val() 方法設(shè)置被選元素的 value 屬性,一般用于input輸入框的賦值。

語法:

//設(shè)置 value 屬性:
$(selector).val(value)

//通過函數(shù)設(shè)置 value 屬性:
$(selector).val(function(index,currentvalue))

示例:給input元素賦值

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<script src="./js/jquery-3.6.0.min.js"></script>
		<script>
			$(document).ready(function(){
				$("button").click(function(){
					$("input").val("Hello world!");
				});
			});
		</script>
		<style>
			p{
				width: 200px;
				height: 100px;
				border: 1px solid #AFEEEE;
				background-color: #AFEEEE;
			}
		</style>
	</head>
	<body>

		<input type="text"><br><br>
		<button>給input添加內(nèi)容</button>

	</body>
</html>

jquery賦值的方式有哪些

“jquery賦值的方式有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI