首页 > 编程 > HTML > 正文

jQuery设置和获取HTML、文本和值示例

2020-03-24 16:02:33
字体:
来源:转载
供稿:网友
$("#address").focus(function(){ // 地址框获得鼠标焦点var txt_html' target='_blank'>value = $(this).val(); // 得到当前文本框的值if(txt_value=="请输入邮箱地址"){ $(this).val(""); // 如果符合条件,则清空文本框内容$("#address").blur(function(){ // 地址框失去鼠标焦点var txt_value = $(this).val(); // 得到当前文本框的值if(txt_value==""){$(this).val("请输入邮箱地址");// 如果符合条件,则设置内容$("#password").focus(function(){var txt_value = $(this).val();if(txt_value=="请输入邮箱密码"){$(this).val("");$("#password").blur(function(){var txt_value = $(this).val();if(txt_value==""){$(this).val("请输入邮箱密码");//]] /script
script type="text/javascript" // ![CDATA[ $(function(){ $("#address").focus(function(){ // 地址框获得鼠标焦点 var txt_value = $(this).val(); // 得到当前文本框的值 if(txt_value==this.defaultValue){ $(this).val(""); // 如果符合条件,则清空文本框内容 } }); $("#address").blur(function(){ // 地址框失去鼠标焦点 var txt_value = $(this).val(); // 得到当前文本框的值 if(txt_value==""){ $(this).val(this.defaultValue);// 如果符合条件,则设置内容 } })$("#password").focus(function(){var txt_value = $(this).val();if(txt_value==this.defaultValue){$(this).val("");$("#password").blur(function(){var txt_value = $(this).val();if(txt_value==""){$(this).val(this.defaultValue);//]] /script
$("input:eq(0)").click(function(){$("#single option").removeAttr("selected"); //移除属性selected$("#single option:eq(1)").attr("selected",true); //设置属性selected//设置多选下拉框选中$("input:eq(1)").click(function(){$("#multiple option").removeAttr("selected"); //移除属性selected$("#multiple option:eq(2)").attr("selected",true);//设置属性selected$("#multiple option:eq(3)").attr("selected",true);//设置属性selected//设置单选框和多选框选中$("input:eq(2)").click(function(){$(":checkbox").removeAttr("checked"); //移除属性checked$(":radio").removeAttr("checked"); //移除属性checked$(":checkbox[value=check2]").attr("checked",true);//设置属性checked$("[value=check3]:checkbox").attr("checked",true);//设置属性checked$("[value=radio2]:radio").attr("checked",true);//设置属性checked//]] /script :checkbox 表示属性为checkbox更多编程语言

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表