本篇文章给大家分享的内容是关于html、js的一些用法小技巧,有着一定的参考价值,有需要的朋友可以参考一下
function xxx() { var opts = { url : '/xxx.do', type : 'post', dataType : 'json', success : function(data) { } } $("#jvForm").ajaxSubmit(opts); }
js中动态拼接p,会有不能加载样式的问题
for (i = 0; i < gaozhong.length; i++) { var v = '<li id="'+gaozhong[i].id+'" class="myli">'+gaozhong[i].title+'</li>'; $("#high").append(v); } //在使用'ul'标签时才使用,作用:刷新列表,重新加载所在标签的样式 $("ul").listview("refresh"); $("ul").trigger("create");
function getRequest() { var url = location.search; // 获取url中"?"符后的字串 return url; }
相关推荐:
以上是关于html、js的一些用法小技巧的详细内容。更多信息请关注PHP中文网其他相关文章!