您好我试图更改ddl.selectedIntex = 1,我看到ddl的值正在改变,但事件ddl.change不起作用。
$("#ctl00_PlaceHolderMain_AccountsDDL_ddlAccounts")[0].selectedIndex = 1;
这只是设置了值,但我需要运行.change函数
任何想法? 我在控制台中尝试这个所有的工作thx,meybe你知道我怎么能通过将PostData传递给HttpWebRequest来做到这一点?
我在控制台中尝试这个所有的工作thx,meybe你知道我怎么能通过将PostData传递给HttpWebRequest来做到这一点 我添加了我的代码
HttpWebRequest postRequest = (HttpWebRequest)WebRequest.Create("https://www.com/Pages/current.aspx");
PostString += "ctl00$PlaceHolderMain$AccountsDDL$ddlAccounts=" + Number + "&";//Here
byte[] byteArray = Encoding.ASCII.GetBytes(PostString);
postRequest.ContentLength = byteArray.Length;
Stream newStream = postRequest.GetRequestStream();
newStream.Write(byteArray, 0, byteArray.Length);
newStream.Close();
HttpWebResponse postResponse = (HttpWebResponse)postRequest.GetResponse();
答案 0 :(得分:4)
通过代码更改值时不会触发更改事件。您需要致电change()
或trigger("change")
$("#ctl00_PlaceHolderMain_AccountsDDL_ddlAccounts").change()
或
$("#ctl00_PlaceHolderMain_AccountsDDL_ddlAccounts").trigger("change")
作为附加说明使用Control.ClientID来获取javascript中的元素,而不是使用硬编码的asp.net生成的客户端ID。
$("#<%= ddlAccounts.ClientID %>").change()
答案 1 :(得分:0)
或只是使用此
$("[id$=ddlAccounts]").change();
使用$'Ends with'来缩短选择器的名称
答案 2 :(得分:0)
<script>
$("select").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).text() + " ";
$("#DropDownList1")[0].selectedIndex = 5;
});
$("div").text(str);
}).change();
</script>
<div></div>
试试这个....它可以帮到你