在jQuery中,給div賦值的方法有以下幾種:
使用text()方法:使用text()方法可以設置或獲取div元素中的文本內容,例如:$( “div” ).text( “Hello World!” );
使用html()方法:使用html()方法可以設置或獲取div元素中的HTML內容,例如:$( “div” ).html( “
Hello World!
” );使用val()方法:val()方法主要用于設置或獲取表單元素的值,但也可以用于設置或獲取div元素中的內容,例如:$( “div” ).val( “Hello World!” );
使用append()方法:append()方法用于向div元素中追加內容,例如:$( “div” ).append( “
Hello World!
” );使用prepend()方法:prepend()方法用于在div元素內部的開始位置插入內容,例如:$( “div” ).prepend( “
Hello World!
” );使用after()方法:after()方法用于在div元素的后面插入內容,例如:$( “div” ).after( “
Hello World!
” );使用before()方法:before()方法用于在div元素的前面插入內容,例如:$( “div” ).before( “
Hello World!
” );這些方法可以根據需求選擇使用,根據具體情況決定使用哪個方法。