0
我從一個很好的文件渲染dom。 然後我通過點擊事件來操縱jQuery。csQuery從被操縱的dom中選擇元素?
我的問題是: 如何從現在的代碼中獲取操縱元素?
$(document).ready(function() {
var x = $(".class");
x.on("click", function() {
$(this).addClass("editable");
});
});
public static string filePath = HttpContext.Current.Request.PhysicalApplicationPath;
public static string file = filePath + "/templates/index.html";
public CQ dom = CQ.CreateFromFile(file);
protected void Page_Load(object sender, EventArgs e)
{
var html = dom.Render();
if (!IsPostBack)
{
Response.Write(html);
}
}
protected void btnSave_OnClick(object sender, EventArgs e)
{
var editable = dom.Select(".simplecms.editable").Text();
// Obviously this string will contain the value from the original dom, how can I retrieve the manipulated dom here?
}
感謝您的回覆 - 不是我希望的答案。我相信有一個更簡單的方法來解決我的問題:)我會繼續調查。 – MartinDK81