button或submit有target属性吗

来源:百度知道 编辑:UC知道 时间:2024/05/19 23:48:55
1我想用target属性,还得用button,因为我还有一个文本域,要提交它的值,
2要是用<a></a>能把我的文本域的值用问号带到action吗?
JavaScript怎么实现啊?

用js实现

直接
var text = document.getElementById("文本域名称").value;
window.location = "xxx?param="+text ;
如果是在新窗口打开
window.open("xxx?param="+text);

这个你可以使用JavaScript来实现呀

target是标准不推荐使用的