We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
static void test()
{
string strHTML = "<input name="660a3525-b274-2669-591e-8bd04ded968e" title="eeee" id="660a3525-b274-2669-591e-8bd04ded968e" style="border-width: medium medium 1px; border-style: none none solid; border-color: currentColor currentColor rgb(236, 236, 236); left: 149px; top: 73px; width: 100px; height: 20px; text-align: left; color: rgb(0, 0, 0); font-size: 12px; position: absolute; z-index: auto;" type="text" value="" RightKeyGetType="text" DesignerControl="yes" mydefaultvalue="" borderColor="" borderType="1">";
var document = new SystemParser().Parse(strHTML);
string s1 = document.Render();
var inputDoms = document.Find("input");
if (inputDoms != null)
foreach (var dom in inputDoms)
dom.Style().SetValue("display", null);
}
string s2=document.Render();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
static void test()
{
string strHTML = "<input name="660a3525-b274-2669-591e-8bd04ded968e" title="eeee" id="660a3525-b274-2669-591e-8bd04ded968e" style="border-width: medium medium 1px; border-style: none none solid; border-color: currentColor currentColor rgb(236, 236, 236); left: 149px; top: 73px; width: 100px; height: 20px; text-align: left; color: rgb(0, 0, 0); font-size: 12px; position: absolute; z-index: auto;" type="text" value="" RightKeyGetType="text" DesignerControl="yes" mydefaultvalue="" borderColor="" borderType="1">";
var document = new SystemParser().Parse(strHTML);
string s1 = document.Render();
var inputDoms = document.Find("input");
if (inputDoms != null)
{
foreach (var dom in inputDoms)
{
dom.Style().SetValue("display", null);
}
}
string s2=document.Render();
}
The text was updated successfully, but these errors were encountered: