Response.Write(string.Format("<srcipt language='javascript'>var inpu = document.createElement('input');inpu.setAttribute('type', 'text');inpu.setAttribute('style', 'with:500px;height:100px');inpu.setAttribute('value','{0}');document.getElementById('form2').appendChild(inpu);</script>",content));
添加 id 为 form2 的表单的子节点,创建失败了,我用普通的js试了一下,可以添加的,但是用Response.Write方法来实现的话,页面中就会出现
欢迎回来var inpu = document.createElement('input');inpu.setAttribute('type', 'text');inpu.setAttribute('style', 'with:500px;height:100px');inpu.setAttribute('value','aaaaaaaaaaaaaaaaaaaaaaaaaaaa');
这样的字符,求指教 |