axure文本框如何获取参数值?急急急!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axure文本框如何获取参数值?急急急!相关的知识,希望对你有一定的参考价值。

一个文本框 , 一个输入框(默认无值) 点击 文本框, 文本框的值 自动保存到输入框中...
这个怎么实现?

参考技术A

思路:先取值,然后赋值

如图:

本回答被提问者和网友采纳

如何获取url参数并将其设置为文本框onload的默认值

【中文标题】如何获取url参数并将其设置为文本框onload的默认值【英文标题】:how to get the url parameters and set it as the default value of a text box onload 【发布时间】:2020-06-03 06:31:03 【问题描述】:

网址

http://localhost:8082/EPHI2/SearchOrg.html?orgName=Appollo

我必须从这个url中提取参数并将其设置为页面的文本框onload的默认值。

我的HTML页面如下。

SearchOrg.html

    <!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet"
    href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<style>
.topnav 
  overflow: hidden;
  background-color: #FCFEEA;


.topnav a 
  float: left;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;


.topnav a:hover 
  background-color: #CBF894;
  color: black;


.topnav a.active 
  background-color: #4CAF50;
  color: white;

</style>
</head>
<body>
<div class="topnav">
        <a href="landing.html">Home</a>
        <a href="search.html">Search Patient</a>
        <a href="manage_policy.html">Manage Policy</a>
        <a href="#" class="xactive">Search Organization</a>
    </div>
    <br>
    <br>
    <br>
    <br>
    <form style="padding: 10px 400px;" name="searchOrganization" action="viewOrganization" method="post">
        <input type="text" name="searchOrg" id="searchOrg" class="form-control"
            placeholder="Search the organization" /> <br>&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;<input
            type="submit" class="btn btn-primary" id="Search" value="Search" /> <input
            type="button" class="btn btn-primary" id="ok" value="OK" /> <input
            type="reset" class="btn btn-primary" id="clear" value="Clear" />
    </form>
</body>
</html>

我必须将文本框“searchOrg”的默认值设置为url参数“orgName”的值。

【问题讨论】:

试试这个:***.com/q/19491336 【参考方案1】:

这里有完整的代码,复制一下,谢谢

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<style>
.topnav 
 overflow: hidden;
 background-color: #FCFEEA;


.topnav a 
 float: left;
 color: black;
 text-align: center;
 padding: 14px 16px;
 text-decoration: none;
 font-size: 17px;
 

.topnav a:hover 
 background-color: #CBF894;
 color: black;
 

.topnav a.active 
 background-color: #4CAF50;
 color: white;
 
</style>
</head>
<body>
<div class="topnav">
    <a href="landing.html">Home</a>
    <a href="search.html">Search Patient</a>
    <a href="manage_policy.html">Manage Policy</a>
    <a href="#" class="xactive">Search Organization</a>
</div>
<br>
<br>
<br>
<br>
<form style="padding: 10px 400px;" name="searchOrganization" action="viewOrganization" method="post">
    <input type="text" name="searchOrg" id="searchOrg" class="form-control"
        placeholder="Search the organization" /> <br>&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;<input
        type="submit" class="btn btn-primary" id="Search" value="Search" /> <input
        type="button" class="btn btn-primary" id="ok" value="OK" /> <input
        type="reset" class="btn btn-primary" id="clear" value="Clear" />
</form>

<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
$( window ).on( "load", function() 
function getParameterByName( name,href )

name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec( href );
if( results == null )
return "";
else
return decodeURIComponent(results[1].replace(/\+/g, " "));


var url      = window.location.href; 
$('#searchOrg').val(getParameterByName("orgName", url));
); 

</script>
</body>
</html>

【讨论】:

我已经在脚本中使用 jquery 1.12.4 无论如何我们可以在 1.12.4 @Tausif 中运行此代码 只需在 上将 jquery 链接更改为 1.12.4 谢谢@Tausiif

以上是关于axure文本框如何获取参数值?急急急!的主要内容,如果未能解决你的问题,请参考以下文章

如何获取url参数并将其设置为文本框onload的默认值

手机jsp页面文本框获取焦点后自动放大的解决方法。那位大哥可以帮助下啊 急 急

如何使用angularjs实现文本框获取焦点?

后台封装成jsonarray,前台js如何接收并存储到下拉列表中,急急急。。。

JS获取图片宽高,急急急~

如何在 asp.net 代码中获取引导文本框值并在存储过程中作为参数发送?