选项卡
这里是要显示在选项卡的内容
js:
jQuery("#myContent").click(function(){
var myContent = jQuery("#myContent").val();
//把a标签的内容显示在选项卡中
jQuery("#myItem").html(myContent) ;
//把a标签的内容显示在选项卡的title属性中
jQuery("#myItem").attr("title",myContent) ;
});
jQuery可以通过text和html方法获取指定标签的文本内容或者html内容
$(document).ready(function(){
$("#btn1").click(function(){
alert("Text: " + $("#test").text());
});
$("#btn2").click(function(){
alert("HTML: " + $("#test").html());
});
});
是指用户输入在文本框里的内容,还是控件本身的内容
一般都是
$("#控件ID").val() 或者 $("name=[控件name]").text()
$(".文本id").val();