我正在创建一个自定义的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;
答案 0 :(得分:2)
只是疯狂猜测并弄清楚了。 不要声明它,只是开始访问它。 IE:
document.getElementById("myForm").reset();