我想将此提交按钮转换为href
链接。表单不是html表单,而是JavaScript。按钮代码目前是:
<input type="submit" value="Name" onclick="Offer();">
如何将其转换为href
链接。
我已经尝试onclick="document.Offer();"
,但它无法正常工作
答案 0 :(得分:0)
像这样,
<a href="www.mysite.com" onclick="return theFunction();">Name</a>
<script type="text/javascript">
function theFunction () {
// return true or false, depending on whether you want to allow the `href` property to follow through or not
}
</script>
答案 1 :(得分:0)
如果可以请提供您的代码,以便更容易理解您的要求。
此帖有stack overflow帖子。