我在我的脚本中声明以下内容
function dialog($link) {
var modal = {};
...
function createModal() {
modal.$modal = $.modal({
title: title,
closeButton: true,
content: content,
onClose: onModalClose,
minWidth: 300,
maxHeight: false,
width: false,
resizeOnLoad: true
});
modal.$form = $modal.find('.form');
modal.$message = $modal.find('.message');
modal.$submits = $modal.find('.submit-button');
modal.href = $form.attr('data-href');
}
这里没有错误检查,所以如果我愿意,我可以继续编写以下内容:
var a = modal.$formmmmmmmm;
我习惯于在 C# 中声明一个类并定义所有内容。有什么方法可以在 Javascript 中做到这一点吗?我听说 VS2012 使用 javascript 好多了。有没有人在使用它,它会使用我上面的代码给我智能感知,还是我需要以不同的方式做事?