1、新建HTML文件。
2、引入jqueryminjs文件。
3、创建HTML内容。
5、用jquery创建点击事件,点击显示按钮,p内容显示。
6、预览如图当点击隐藏按钮,p内容隐藏。
7、当点击显示按钮,p内容显示。
$ajax({
type: "GET",
url: "testjson",
data: {
test: $("#test")val(),
},
dataType: "json",
success: function(data) {
$('#resText')empty(); //清空resText里面的所有内容
var html = '';
//你的逻辑
$('#resText')html(html);
}
});
首先添加给radio添加绑定单击事件,可以直接使用onclick="",也可以用jquery绑定;
$(function() {
showCont();
$("input[name=price_type]")click(function() {
showCont();
});
});
function showCont(){
var normal = documentgetElementById("price_type1");
var special = documentgetElementById("price_type2");
if (normalchecked) {
$("#sellInfo2")hide();
$("#sellInfo1")show();
}
if (specialchecked) {
$("#sellInfo1")hide();
$("#sellInfo2")show();
}
}
结果:
以上就是关于怎样判断jQuery 元素是否显示与隐藏全部的内容,包括:怎样判断jQuery 元素是否显示与隐藏、jquery如何通过ajax请求获取后台数据显示在、jquery 获取radio的选中事件,radio默认选中时,显示其中一行tr,选中另外一个radio时,显示不同的tr记录等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)