- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我一直在拼命尝试在函数之间传递变量,我尝试了一些解决方案,但它们不起作用 - 也许我做错了。我不知道如何解决这个问题,这对你们中的一些人来说可能微不足道,期待帮助。
它是如何工作的:输入单选按钮应该在 url 中添加一个参数(queryParams - 根据文档,一切都应该没问题),我将其称为用于显示指定数据的附加过滤器。当您单击单选脚本时,会获取该值并将其附加到 queryParams。
如果您有更多问题,请随时提问。
<div class="adv_filter">
<li>
<input type="radio" name="letter_type" data-custom="Radio1" value="0">Radio1</li>
<li>
<input type="radio" name="letter_type" data-custom="Radio2" value="1" checked="checked">Radio2</li>
<li>
<input type="radio" name="letter_type" data-custom="Radio3" value="2">Radio3</li>
</div>
$("li").on("click", "input", function () {
$('#dg').datagrid('reload'); //reloads the grid
alert($(this).val()); //gets the value of input type radio
globalVar = $(this).val(); //assign the value to a global variable
$('#string').html(globalVar);
});
$('#dg').datagrid({
url: 'data_loader.php',
queryParams: { //this adds to the url ?ltype=valur
ltype: globalVar //assign the global variable here
}
});
//$('#string2').html(globalVar);
最佳答案
一种解决方案是再次调用 .datagrid
。
$("li").on("click", "input", function () {
var val = $(this).val();
$('#string').html(val);
updateDataGrid(val);
});
updateDataGrid(); // this initial call may or may not be needed.
// if the grid should load something on start up
// then pass a parameter to it here.
function updateDataGrid(query) {
$('#dg').datagrid({
url: 'data_loader.php',
queryParams: {
ltype: query
}
});
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://www.jeasyui.com/easyui/jquery.easyui.min.js"></script>
<link href="http://www.jeasyui.com/easyui/themes/default/easyui.css" rel="stylesheet"/>
<hr>Filter
<hr>
<div class="adv_filter">
<li>
<input type="radio" name="letter_type" data-custom="Radio1" value="0">Radio1</li>
<li>
<input type="radio" name="letter_type" data-custom="Radio2" value="1" checked="checked">Radio2</li>
<li>
<input type="radio" name="letter_type" data-custom="Radio3" value="2">Radio3</li>
</div>
<hr>
<table class="easyui-datagrid" id="dg" title="Basic DataGrid" style="width:700px;height:250px" data-options="singleSelect:true,collapsible:true">
<thead>
<tr>
<th data-options="field:'itemid',width:80">Item ID</th>
<th data-options="field:'productid',width:100">Product</th>
<th data-options="field:'listprice',width:80,align:'right'">List Price</th>
<th data-options="field:'unitcost',width:80,align:'right'">Unit Cost</th>
<th data-options="field:'attr1',width:250">Attribute</th>
<th data-options="field:'status',width:60,align:'center'">Status</th>
</tr>
</thead>
</table>
<hr>
<!-- debug -->inside
<div id="string"></div>
<hr>outer
<div id="string2"></div>
关于javascript - 将变量传递给另一个函数(easyui),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26387676/
我在使用 jsPlumb 和 jQuery EasyUI 时遇到了一个真正的问题。 这里发生了什么。我有一个使用 EasyUI 的网站,我试图向其中添加一些 jsPlumb 连接,但这些连接的行为并不
当“指标4名称”为空时,我不想要“0”。 下面是我的js代码: first[12+4*i]['field'] = 'fxzb'+(i+1)+'_mc'; first[12+4*i]['title']
你好,我一直在拼命尝试在函数之间传递变量,我尝试了一些解决方案,但它们不起作用 - 也许我做错了。我不知道如何解决这个问题,这对你们中的一些人来说可能微不足道,期待帮助。 它是如何工作的:输入单选按钮
我正在使用jQuery EasyUI datagrid向我的用户展示一些数据。我知道如何使用以下方法获取数据网格中所选行的数据: var selectedRow = $('#my_datagrid_i
我有 2 个表:客户联系人。表 contact 有一个外键指向客户表。
这是功能部分,我把它放在主页中,该页面有 Accordion ,不幸的是它不起作用。 $('.easyui-accordion').css('height', '240px') ';
我正在使用 http://www.jeasyui.com . 我需要根据组合框中的值填充数据网格。 我用以下内容填充组合框, 它运行良好。数据网格看起来像,
我有一组预定义的 MySQL 查询,我想将其结果显示在 EasyUI 数据网格 (jQuery) 上。 问题是每个查询返回不同的结果列,所以我不能使用类似于 jQuery 教程部分的东西 Dynami
我使用下面的示例来填充层次结构。 http://www.jeasyui.com/documentation/treegrid.php 最初加载时,树全部展开。我是否缺少任何设置来加载最初全部折叠的树。
我目前正在使用easyui datagrid,我只需要在数据网格中添加整个列并将它们放入文本框或其他内容中 add debit and credit 我只需要添加它们然后显示并比较也可以使用php来做
我正在使用 jQuery EasyUI Tabs 开发 Web 应用程序。 我在应用程序的左侧有几个垂直链接,单击这些链接后,新选项卡将添加到顶部的水平 jQuery EasyUI 选项卡条上。 我通
1、传统方式 ? 1
闲来无事把以前做的一个项目整理了一下,今天拿出来跟大家分享,交流和探讨。希望大家多多指正。 1、项目架构图 其中Entity为模型实体层类库;DAL为数据访问层类库,主要负责数据库操作;BLL
我正在为我的表单使用 JEASYUI。我有一个带有文本框( pqty )的编辑表单,我想设置它的 max归因于另一个文本框的值( sqty ),但我不知道是否可能。我知道你可以通过使用特定的数字来设置
我有一个 EasyUI datagrid ,我正在其中远程加载数据。当数据网格最初加载数据时,它有一个排序顺序。 例如。 A | B | C x | 123 |
我正在使用 EasyUI 中的 $.messager,每次单击按钮时都会显示对话框,但页面会向下滚动。 这是我使用的代码: $(function () { var button = $('.f
我在带有多行选择和复选框的 easyui datagrid 中启用了过滤器。 当我在网格中选择一些行后进行搜索时,这会清除我之前的所有选择。 同理,当我过滤一些行并选择几行时,清除过滤文本将清除选择。
我正在尝试为数据网格进行分页。我可以根据查询从 Oracle 数据库导入数据。所有数据都显示在浏览器中。问题是所有数据都在一页上。我必须向下滚动才能看到所有数据。当我按下“下一步”按钮时,没有任何反应
如何发送包含 EasyUi DateBox 的 HTML 表单?无法提交表格。单击提交按钮时没有任何反应。当我注释掉 DateBox 标签时,表单提交成功。
我在使用 easyui 的数据网格中有组合框,但不工作 },{ field: "family", title: "Family", align: "center", width: 15
我是一名优秀的程序员,十分优秀!