ZhiYeJianKang_PeiXun/Song.Site/Manage/Course/Scripts/List.js
2025-02-20 15:41:53 +08:00

14 lines
517 B
JavaScript

$(function(){
$(".item img").click(function(){
var thisEle=$(this).parent();
var id=thisEle.attr("couid");
var width=parseInt(thisEle.attr("wd"));
var height=parseInt(thisEle.attr("hg"));
//
//当前页面的上级路径,因为子页面没有写路径,默认与本页面同路径
var url=String(window.document.location.href);
url=url.substring(0,url.lastIndexOf("/")+1);
var boxUrl=url+"List_Edit.aspx?id="+id;
new top.PageBox("课程信息编辑",boxUrl,width,height).Open();
});
});