如何在scriptlet中访问自定义标记的属性?

时间:2015-11-06 15:33:06

标签: jsp jsp-tags

我正在创建一个自定义的jsp标记,需要访问标记文件中scriptlet中的一个属性。我该怎么称才能访问它。

if (UIAlerts.prototype.questions && UIAlerts.prototype.questions.length > 0) {
        UIAlerts.prototype.questions.slice(0, 1);
        UIAlerts.prototype.questions[0] && UIAlerts.prototype.questions[0]();
}

if (UIAlerts.prototype.questions.length == 0)
    UIAlerts.prototype.questions = undefined;

1 个答案:

答案 0 :(得分:2)

只是疯狂猜测并弄清楚了。 不要声明它,只是开始访问它。 IE:

document.getElementById("myForm").reset();