如你所說的,有很多個A標簽,那么你所寫的A標簽就不能用ID來進行識別,如果你想識別那么一部分的A標簽,最好是用class,比如:點擊這樣,JQ綁定事件可以這樣寫$("a.click").click(function(){
我們提供的服務有:成都網站制作、成都網站建設、外貿營銷網站建設、微信公眾號開發(fā)、網站優(yōu)化、網站認證、桂林ssl等。為成百上千企事業(yè)單位解決了網站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的桂林網站制作公司
$("#divid").find("input").val($(this).attr("name")).show();})具體你的div想要怎么彈出來,那就要另外說了,但是要獲取點擊的那個A標簽上的name,只要在點擊事件中用$(this).attr("name")就可以獲取到了。
php我不知道怎么做,不知道和jsp是不是一樣的,不會php
1、在jsp中,你用jquery或者javascript非常好實現(xiàn),當點擊性別時,點擊就是個事件,這個事件所要做的事情就是顯示一個男女的DIV
2、當在男女的DIV上選擇了性別后,隱藏這個div,并且在性別那顯示我們所選擇的性別男或女,我可以可以在隱藏的時候,把選擇的那個男或者女賦
值給性別DIV中的性別那一欄
3、學習下jqeury或者javascript實現(xiàn)起來超容易
4、下面是我寫的js代碼,你看你php能否同樣做出來,按照這個方法
!DOCTYPE
html
head
!-- 聲明當前頁面的編碼集charset=gbk中文編碼gb2312,charset=utf-8國際編碼 --
meta http-equiv="Content-Type" content="text/html; charset=utf-8"
!-- 當前頁面三要素 --
titletitle/title
meta name="Author" content="cn.huanghaiping"
meta name="Keywords" content="關鍵詞,關鍵詞"
meta name="Description" content="描述"
!-- css , js --
/head
body
divinput type="text" id="sextxt"input type="button" value="性別" id="sex" onclick="showsex()"/div
div id="sexradio" style="margin-top:10px;display:none;"
input type="radio" name="sex" value="男" onclick="selectsex(this)" 男
input type="radio" name="sex" value="女" onclick="selectsex(this)" 女
/div
script
function showsex(){
document.getElementById("sexradio").style.display = "block";
}
function selectsex(o){
document.getElementById("sextxt").value = o.value
document.getElementById("sexradio").style.display = "none";
}
/script
/body
/html
$(function(){
//?點擊按鈕,DIV彈出隱藏
$('#btn1').toggle(function(){
$('#div1').show();
},function(){
$('#div1').hide();
});
//?點擊按鈕,DIV彈出,點擊body任意地方隱藏div
$('#btn2').click(function(){
if?(?event??event.stopPropagation?)?{?
//?this?code?is?for?Mozilla?and?Opera?
event.stopPropagation();?
}?
else?if?(window.event)?{?
//?this?code?is?for?IE?
window.event.cancelBubble?=?true;?
}
$('#div2').show();
});
$(document).click(function(){
$('#div2').hide();
});
});
以上都必須要基于,div的css是合理的。
其中?event.stopPropagation(); 和?window.event.cancelBubble = true; 是阻止事件冒泡的寫法,建議自行百度學習。
css:(這里用了fixed,不考慮兼容性)
/*?水平垂直居中的div?*/
#div1,#div2{
position:?fixed;
top:?50%;
left:?50%;
background:red;
width:100px;
height:100px;
margin:-50px?0?0?-50px;
display:none;
}
同樣的功能有很多插件,例如fancybox,fancyzoom等
div input id='input1' type='text' /div
div ?id='b' style='position:absolute;left:20px;top:20px;display='none''/div//自己調整left和top的值將下面的div定位在上一個div的正下方
引如jquery文件
script
$(function(){
$("#b").hide();
$("#input1").focus(function(){
$("#b").slideDown("slow");
});
$("#input1").blur(function(){
$("#b").slideUp("slow");
});
});
/script
style
.box{width:400px;height:400px;background:#f00;position:fixed;top:?50%;left:?50%;}
/style
var?html?=?'div?class="box"/div';
$('body').append(html);
var?L?=?$('.box').width();
var?T?=?$('.box').height();
$('.box').css({
"margin-left":-L/2,
"margin-top":-T/2
})
[img]