将 javascript link 转换为 href
Convert javascript link to href
我想将此提交按钮转换为 href
link。该表格不是 html 表格,而是 JavaScript。当前按钮代码为:
<input type="submit" value="Name" onclick="Offer();">
如何将其转换为 href
link。
我已经试过了onclick="document.Offer();"
但是没用
像这样,
<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>
如果可以,请提供您的代码,以便更容易理解您的要求。
这里有stack overflow post 看看吧
我想将此提交按钮转换为 href
link。该表格不是 html 表格,而是 JavaScript。当前按钮代码为:
<input type="submit" value="Name" onclick="Offer();">
如何将其转换为 href
link。
我已经试过了onclick="document.Offer();"
但是没用
像这样,
<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>
如果可以,请提供您的代码,以便更容易理解您的要求。
这里有stack overflow post 看看吧