1、使用jquery的hide()方法
為企業(yè)提供網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)站優(yōu)化、成都全網(wǎng)營(yíng)銷、競(jìng)價(jià)托管、品牌運(yùn)營(yíng)等營(yíng)銷獲客服務(wù)。創(chuàng)新互聯(lián)公司擁有網(wǎng)絡(luò)營(yíng)銷運(yùn)營(yíng)團(tuán)隊(duì),以豐富的互聯(lián)網(wǎng)營(yíng)銷經(jīng)驗(yàn)助力企業(yè)精準(zhǔn)獲客,真正落地解決中小企業(yè)營(yíng)銷獲客難題,做到“讓獲客更簡(jiǎn)單”。自創(chuàng)立至今,成功用技術(shù)實(shí)力解決了企業(yè)“網(wǎng)站建設(shè)、網(wǎng)絡(luò)品牌塑造、網(wǎng)絡(luò)營(yíng)銷”三大難題,同時(shí)降低了營(yíng)銷成本,提高了有效客戶轉(zhuǎn)化率,獲得了眾多企業(yè)客戶的高度認(rèn)可!
例子:
$("#content").hide();//隱藏input;content為input的id
$("#content").show();//顯示被隱藏的元素;??content為input的id
2、使用jquery的css方法
$("#id").css('display','none');?
$("#id").css('display','block');
3、操作input的style
$("#id")[0].style.display?=?'none';//隱藏input
//$("#id")返回的是JQuery?
$("#id")[0].style.display?=?'block';//顯示input
通過獲取元素的text實(shí)現(xiàn)功能。關(guān)鍵的兩個(gè)jquery函數(shù)為:
$("select").val();??//?選中項(xiàng)目的value值。
$("select?option:checked").text();?//?選中項(xiàng)目的顯示值。
實(shí)例演示如下:
1、設(shè)計(jì)簡(jiǎn)單的一個(gè)下拉框代碼,包括【男】【女】?jī)蓚€(gè)值。代碼如下:
此時(shí)頁(yè)面展示效果如下:
2、設(shè)計(jì)一個(gè)函數(shù),通過點(diǎn)擊按鈕,將當(dāng)前選中的下拉框的值和顯示的文字,都選取出來,并分別賦值給兩個(gè)input,函數(shù)代碼如下:
此時(shí),選取男,然后點(diǎn)擊,展示效果如下:
如果選擇女,展示效果如下:
擴(kuò)展資料:
帶有預(yù)先選定的選項(xiàng)的下拉列表:HTML option 標(biāo)簽的 selected 屬性。
定義和用法:
selected 屬性規(guī)定在頁(yè)面加載時(shí)預(yù)先選定該選項(xiàng)。被預(yù)選的選項(xiàng)會(huì)顯示在下拉列表最前面的位置,也可以在頁(yè)面加載后通過 JavaScript 設(shè)置 selected 屬性。
實(shí)例:
select
optionVolvo/option
option selected="selected"Saab/option
optionMercedes/option
optionAudi/option
/select
script?src="jQuery/jquery.js"/script!--請(qǐng)留意JQ引用位置--
!--腳本部分開始--
script?language="javascript"
$(document).ready(function(){
//第一行,鼠標(biāo)移到P標(biāo)簽,span中的元素顯示
$("img#p1").mouseover(function(){$("img#span1").show()})
//第二行,鼠標(biāo)離P標(biāo)簽,span中的元素隱藏
$("img#p1").mouseout(function(){$('img#span1').hide()})
})
/script
!--腳本部分結(jié)束--
!--HTML部分開始--
p?id="p1"把鼠標(biāo)移動(dòng)到這里來/p
spanimg?id="span1"?src="span圖片.JPG"?style="display:none"/我是顯示內(nèi)容1/span
!--HTML部分結(jié)束--
!--解釋:通過jQuery的show()、hide()函數(shù)可以實(shí)現(xiàn)顯示和隱藏功能,通過jQuery的CSS選擇器可以選擇HTML標(biāo)簽--
我一般
jQuery.ajax({
type: "POST",
url: "",// 要請(qǐng)求的后臺(tái)頁(yè)面
data: "" ,// 要傳的參數(shù)
dataType:'json',
success: function(json){
得到j(luò)son 內(nèi)容 賦值給標(biāo)簽
},
error:function(){
alert('ajax 失敗');
}
});
使用jquery的scrollTop函數(shù)進(jìn)行滾動(dòng)控制:
舉個(gè)栗子:
!DOCTYPE?html
html?lang="en"
head
meta?charset="UTF-8"
meta?name="author"?content="sleest"
meta?name="description"?content="2017/08/07?jQuery?scrollTop?example"?/
titleDocument/title
/head
body
div?style="background:?#bdbdbd;height:400px;width:300px;overflow:auto;"?id="container"
div?id="content-1"?style="height:?200px;background-color:#03a9f4;color:#fff"Height.200px/div
div?id="content-2"?style="height:?300px;background-color:#ffc107;color:#fff"Height.300px/div
div?id="content-3"?style="height:?150px;background-color:#E91E63;color:#fff"Height.150px/div
/div
div?style="margin-top:20px"
labelPixel?Scroll:/label
input?type="number"?value="0"?id="scrollPixel"?step="50"?/
button?type="button"?id="btn-scroll-to"Scroll/button
/div
div?style="margin-top:20px"
labelElement?Scroll:/label
select?id="scrollElement"
option?value=""?selected--?choose?element?2?scorll/option
option?value="#content-1"Content1,?Height?200px/option
option?value="#content-2"Content2,?Height?300px/option
option?value="#content-3"Content3,?Height?150px/option
/select
/div
script?src=""/script
script?type="text/javascript"
+(function($)?{
var?$scrollPixel?=?$('#scrollPixel'),
$container?=?$('#container');
function?scrollPixel()?{
$container.scrollTop(+$scrollPixel.val());
}
function?scrollElement()?{
var?$t?=?$(this),
elId?=?$t.val();
if?(elId)?$container.scrollTop($(elId)[0].offsetTop?-?$container[0].offsetTop);
}
$(function()?{
$('#btn-scroll-to').bind('click',?scrollPixel)
$('#scrollElement').bind('change',?scrollElement)
})
})(jQuery);
/script
/body
/html
當(dāng)前題目:通過jquery,通過jquery把div的元素添加其他div
URL地址:http://www.rwnh.cn/article28/dsiggcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、做網(wǎng)站、微信小程序、營(yíng)銷型網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)