使用Javascript函数设置输入值
2022-08-30 00:39:57
我目前正在使用YUI小工具。我还有一个Javascript函数来验证来自YUI为我绘制的输出:div
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 "" */
}
}, null, true);
这是我的:div
<div>
<p>URL</p>
<input type="text" name="gadget_url" id="gadget_url" style="width: 350px;" class="input"/>
<input type="button" id="addGadgetUrl" value="add gadget"/>
<br>
<span id="error"></span>
</div>
正如你所看到的,我的问题是,我如何将的值设置为?gadget_url
""