8
使用Javascript函数设置输入值
我目前正在使用YUI小工具。我也有一个Javascript函数来验证divYUI为我绘制的输出: Event.on("addGadgetUrl", "click", function(){ var url = Dom.get("gadget_url").value; /* line x ------>*/ if (url == "") { error.innerHTML = "<p> error" /></p>"; } else { /* line y ---> */ /* I need to add some code in here to set the value of "gadget_url" by "" */ } }, …
208
javascript
input
yui
validation