echo "<td><input name='Send' type='button' value='Submit' onClick=location.href='save.php?myDocRegNo=$A&docCat=$C&dcrNo=$Dcr_No
&metTown=$Town_Code&dcrDate=$Dcr_Date&repCode=$Rep_Code&db=$Dbase' /></td>";
我上面的链接在我的php文件中回显,所有$
变量都设置了值,链接工作正常。
但是当我向同一个链接添加两个变量&fullTown=$Town&fullRep=$FlRp
并尝试提交没有任何反应并且链接不起作用时。任何人都可以识别错误吗?HTML链接是否有变量限制?
echo "<td><input name='SendTest' type='button' value='SubmitTest' onClick=location.href='save.php?myDocRegNo=$A&docCat=$C&dcrNo=$Dcr_No
&metTown=$Town_Code&dcrDate=$Dcr_Date&repCode=$Rep_Code&db=$Dbase&fullTown=$Town&fullRep=$FlRp' /></td>";
答案 0 :(得分:0)
请尝试此代码工作正常
var x = {};
// some code where value of x changes and than you want to check whether it is null or some object with values
if(Object.keys(x).length > 0){
// Your code here if x has some properties
}
回声'继续';
答案 1 :(得分:0)
请使用此代码正常工作,我认为只有一些空格问题,并且我已将location.href
更改为window.location.href
并且工作正常。
这是代码
echo "<td><input name='Send' type='button' value='Submit' onClick=window.location.href='save.php?myDocRegNo=$A&docCat=$C&dcrNo=$Dcr_No&metTown=$Town_Code&dcrDate=$Dcr_Date&repCode=$Rep_Code&db=$Dbase' /></td>";